Skip to content

Commit 3ce1d81

Browse files
committed
MAINT: more github actions version updates
1 parent e2f626c commit 3ce1d81

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
name: Publish distribution packages ? to PyPI and TestPyPI
1+
name: Publish distribution packages to PyPI and TestPyPI
22

33
on: push
44

55
jobs:
66
build:
77
# we build on each push, even though we only publish for tagged pushes
8-
name: Build distribution packages ?
8+
name: Build distribution packages
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Set up Python
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@v6
1515
with:
16-
python-version: "3.x"
16+
python-version: "3.12"
1717
- name: Install pypa/build
1818
run: python3 -m pip install build --user
1919
- name: Build a binary wheel and a source tarball
2020
run: python3 -m build
2121
- name: Store the distribution packages
22-
uses: actions/upload-artifact@v3
22+
uses: actions/upload-artifact@v4
2323
with:
2424
name: python-distribution-packages
2525
path: dist/
2626

2727
publish-to-testpypi:
28-
name: Publish distribution packages ? to TestPyPI
28+
name: Publish distribution packages to TestPyPI
2929
# only publish to TestPyPI on tag pushes
3030
if: startsWith(github.ref, 'refs/tags/')
3131
needs:
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Download all the dists
44-
uses: actions/download-artifact@v4.1.7
44+
uses: actions/download-artifact@v5
4545
with:
4646
name: python-distribution-packages
4747
path: dist/
@@ -65,7 +65,7 @@ jobs:
6565

6666
steps:
6767
- name: Download all the dists
68-
uses: actions/download-artifact@v4.1.7
68+
uses: actions/download-artifact@v5
6969
with:
7070
name: python-distribution-packages
7171
path: dist/

0 commit comments

Comments
 (0)