Skip to content

Commit 318ce0c

Browse files
authored
upgrade release workflow actions to their latest versions (fixes #875)
1 parent 6b67c73 commit 318ce0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build universal wheel and source distribution
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: ./.github/actions/install-python-and-package
1616
with:
1717
extras-require: publishing
@@ -26,11 +26,11 @@ jobs:
2626
runs-on: ubuntu-latest
2727
if: github.event_name == 'workflow_dispatch'
2828
steps:
29-
- uses: actions/download-artifact@v3
29+
- uses: actions/download-artifact@v4
3030
with:
3131
name: artifact
3232
path: dist
33-
- uses: pypa/gh-action-pypi-publish@v1.4.2
33+
- uses: pypa/gh-action-pypi-publish@v1.12.4
3434
with:
3535
user: __token__
3636
password: ${{ secrets.TEST_PYPI_TOKEN }}
@@ -41,11 +41,11 @@ jobs:
4141
runs-on: ubuntu-latest
4242
if: github.event_name == 'release' && github.event.action == 'published'
4343
steps:
44-
- uses: actions/download-artifact@v3
44+
- uses: actions/download-artifact@v4
4545
with:
4646
name: artifact
4747
path: dist
48-
- uses: pypa/gh-action-pypi-publish@v1.4.2
48+
- uses: pypa/gh-action-pypi-publish@v1.12.4
4949
with:
5050
user: __token__
5151
password: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)