Skip to content

Commit cf1580b

Browse files
committed
Use latest actions versions
1 parent fb94802 commit cf1580b

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ 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@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.11
2222

@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Upload packages to Jazzband
3535
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
36-
uses: pypa/gh-action-pypi-publish@master
36+
uses: pypa/gh-action-pypi-publish@release/v1
3737
with:
3838
user: jazzband
3939
password: ${{ secrets.JAZZBAND_RELEASE_KEY }}

.github/workflows/test.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
python-version: '3.12'
5353

5454
steps:
55-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5656

5757
- name: Set up Python ${{ matrix.python-version }}
58-
uses: actions/setup-python@v4
58+
uses: actions/setup-python@v5
5959
with:
6060
python-version: ${{ matrix.python-version }}
6161
allow-prereleases: true
@@ -72,7 +72,8 @@ jobs:
7272
env:
7373
DJANGO: ${{ matrix.django-version }}
7474

75-
- name: Upload coverage
76-
uses: codecov/codecov-action@v3
77-
with:
78-
name: Python ${{ matrix.python-version }}
75+
# FIXME: Codecov requires a token, which we do not have
76+
# - name: Upload coverage
77+
# uses: codecov/codecov-action@v5
78+
# with:
79+
# name: Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)