Skip to content

Commit 8f62f3c

Browse files
author
Jeremy Hitt
committed
Upgrade artifact actions to Node.js 24 compatible versions
- actions/upload-artifact: v4 -> v6 - actions/download-artifact: v4 -> v7 Node.js 20 actions are deprecated and will be forced to Node.js 24 starting June 16th, 2026.
1 parent 17e1260 commit 8f62f3c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: python -m pip install cibuildwheel==2.11.3
1717
- name: Build wheels
1818
run: ./samba/dc.sh ./build_and_test_wheels.sh
19-
- uses: actions/upload-artifact@v4
19+
- uses: actions/upload-artifact@v6
2020
with:
2121
name: wheels-py3
2222
path: ./wheelhouse/*.whl
@@ -30,7 +30,7 @@ jobs:
3030
- name: Build sdist
3131
run: pipx run build --sdist
3232

33-
- uses: actions/upload-artifact@v4
33+
- uses: actions/upload-artifact@v6
3434
with:
3535
name: sdist
3636
path: dist/*.tar.gz
@@ -41,7 +41,7 @@ jobs:
4141
# upload to PyPI on every tag starting with 'v'
4242
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
4343
steps:
44-
- uses: actions/download-artifact@v4
44+
- uses: actions/download-artifact@v7
4545
with:
4646
pattern: '*'
4747
path: dist

0 commit comments

Comments
 (0)