Skip to content

Commit f5ee2d5

Browse files
authoredFeb 28, 2025··
ci: update actions/upload-artifact to v4
1 parent b6b416b commit f5ee2d5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎.github/workflows/build.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*
1717
CIBW_ARCHS: auto64
1818

19-
- uses: actions/upload-artifact@v3
19+
- uses: actions/upload-artifact@v4
2020
with:
21+
name: wheels
2122
path: ./wheelhouse/*.whl
2223

2324
build_legacy_wheels:
@@ -33,8 +34,9 @@ jobs:
3334
CIBW_BUILD: cp27-* cp35-*
3435
CIBW_ARCHS: auto64
3536

36-
- uses: actions/upload-artifact@v3
37+
- uses: actions/upload-artifact@v4
3738
with:
39+
name: legacy-wheels
3840
path: ./wheelhouse/*.whl
3941

4042
build_sdist:
@@ -46,6 +48,7 @@ jobs:
4648
- name: Build sdist
4749
run: pipx run build --sdist
4850

49-
- uses: actions/upload-artifact@v3
51+
- uses: actions/upload-artifact@v4
5052
with:
53+
name: sdist
5154
path: dist/*.tar.gz

0 commit comments

Comments
 (0)
Please sign in to comment.