Skip to content

Commit 2e5d082

Browse files
committed
Bump upload/download-artifact to v6 (Node 24)
1 parent b42e16e commit 2e5d082

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
CIBW_ARCHS: ${{ matrix.cibw_archs }}
3333

3434
- name: Upload wheels
35-
uses: actions/upload-artifact@v5
35+
uses: actions/upload-artifact@v6
3636
with:
3737
name: wheels-${{ matrix.os }}-${{ matrix.cibw_archs }}
3838
path: ./wheelhouse/*.whl
@@ -58,7 +58,7 @@ jobs:
5858
run: python -m build --sdist
5959

6060
- name: Upload sdist
61-
uses: actions/upload-artifact@v5
61+
uses: actions/upload-artifact@v6
6262
with:
6363
name: sdist
6464
path: dist/*.tar.gz
@@ -69,7 +69,7 @@ jobs:
6969
needs: [build_wheels, build_sdist]
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/download-artifact@v5
72+
- uses: actions/download-artifact@v6
7373
with:
7474
path: dist
7575
merge-multiple: true

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
CIBW_ARCHS: ${{ matrix.cibw_archs }}
4242

4343
- name: Upload wheels
44-
uses: actions/upload-artifact@v5
44+
uses: actions/upload-artifact@v6
4545
with:
4646
name: wheels-${{ matrix.os }}-${{ matrix.cibw_archs }}
4747
path: ./wheelhouse/*.whl
@@ -67,7 +67,7 @@ jobs:
6767
run: python -m build --sdist
6868

6969
- name: Upload sdist
70-
uses: actions/upload-artifact@v5
70+
uses: actions/upload-artifact@v6
7171
with:
7272
name: sdist
7373
path: dist/*.tar.gz
@@ -87,7 +87,7 @@ jobs:
8787

8888
steps:
8989
- name: Download all artifacts
90-
uses: actions/download-artifact@v5
90+
uses: actions/download-artifact@v6
9191
with:
9292
path: dist
9393
merge-multiple: true

0 commit comments

Comments
 (0)