Skip to content

Commit 05a5889

Browse files
👷 Update github actions
1 parent a64448c commit 05a5889

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/ci.yml

+8-9
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python: ['3.8', '3.9', '3.10']
18+
python: ['3.8', '3.9', '3.10', '3.11']
1919
django: ['3.2', '4.1', '4.2']
2020
include:
2121
- python: '3.11'
22-
django: '4.1'
23-
- python: '3.11'
24-
django: '4.2'
22+
django: ['4.1', '4.2']
2523

2624
name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }})
2725

@@ -30,8 +28,8 @@ jobs:
3028
DJANGO: ${{ matrix.django }}
3129

3230
steps:
33-
- uses: actions/checkout@v3
34-
- uses: actions/setup-python@v4
31+
- uses: actions/checkout@v4
32+
- uses: actions/setup-python@v5
3533
with:
3634
python-version: ${{ matrix.python }}
3735

@@ -41,8 +39,9 @@ jobs:
4139
- name: Run tests
4240
run: tox
4341

44-
- uses: codecov/codecov-action@v3
42+
- uses: codecov/codecov-action@v4
4543
with:
44+
token: ${{ secrets.CODECOV_TOKEN }}
4645
env_vars: PYTHON_VERSION,DJANGO
4746

4847
publish:
@@ -53,8 +52,8 @@ jobs:
5352
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
5453

5554
steps:
56-
- uses: actions/checkout@v3
57-
- uses: actions/setup-python@v4
55+
- uses: actions/checkout@v4
56+
- uses: actions/setup-python@v5
5857
with:
5958
python-version: '3.10'
6059

.github/workflows/code_quality.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- docs
2828
# - flake8
2929
steps:
30-
- uses: actions/checkout@v3
31-
- uses: actions/setup-python@v4
30+
- uses: actions/checkout@v4
31+
- uses: actions/setup-python@v5
3232
with:
3333
python-version: '3.10'
3434
- name: Install dependencies

0 commit comments

Comments
 (0)