Skip to content

Commit 7631f71

Browse files
authored
Upgrade github actions (#825)
1 parent 83a0ae7 commit 7631f71

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.9
21+
python-version: '3.9'
2222

2323
- name: Install dependencies
2424
run: |

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
django-version: '4.1'
3333

3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636

3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v3
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141

4242
- name: Set up Node
43-
uses: actions/setup-node@v3
43+
uses: actions/setup-node@v4
4444
with:
4545
node-version: '16'
4646

@@ -52,7 +52,7 @@ jobs:
5252
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
5353

5454
- name: Cache
55-
uses: actions/cache@v3
55+
uses: actions/cache@v4
5656
with:
5757
path: ${{ steps.pip-cache.outputs.dir }}
5858
key:
@@ -72,13 +72,13 @@ jobs:
7272
DJANGO: ${{ matrix.django-version }}
7373

7474
- name: Upload coverage
75-
uses: codecov/codecov-action@v3
75+
uses: codecov/codecov-action@v5
7676
with:
7777
name: Python ${{ matrix.python-version }}
7878

7979
ruff:
8080
runs-on: ubuntu-latest
8181
steps:
82-
- uses: actions/checkout@v3
82+
- uses: actions/checkout@v4
8383
- run: pip install --user ruff
8484
- run: ruff check . --extend-select=C4,C9,I,PLC,PLE,PLR,U --ignore=C414,I001,PLR0913,UP007,UP032 --target-version=py39

0 commit comments

Comments
 (0)