Skip to content

Commit ce98420

Browse files
authored
Bump upload-artifact@v3 to v4 in cibuildwheel.yml and build_wheels.yml since v3 is deprecated
1 parent ef05542 commit ce98420

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
python setup.py bdist_wheel
3838
- name: Upload artifact
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: ${{ matrix.os }}-python${{ matrix.python-version }}-whl
4242
path: dist/*.whl
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
python setup.py sdist
6060
- name: Upload artifact
61-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: Source distribution (sdist)
6464
path: dist/*.*

.github/workflows/cibuildwheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python setup.py sdist
2929
3030
- name: Upload artifact
31-
uses: actions/upload-artifact@v3
31+
uses: actions/upload-artifact@v4
3232
with:
3333
path: dist/*.*
3434

@@ -65,7 +65,7 @@ jobs:
6565
CIBW_TEST_COMMAND: pytest {package}/tests
6666
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64"
6767

68-
- uses: actions/upload-artifact@v3
68+
- uses: actions/upload-artifact@v4
6969
with:
7070
path: ./wheelhouse/*.whl
7171

@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-latest
7878
if: github.event_name == 'release' && github.event.action == 'published'
7979
steps:
80-
- uses: actions/download-artifact@v3
80+
- uses: actions/download-artifact@v4
8181
with:
8282
name: artifact
8383
path: dist

0 commit comments

Comments
 (0)