Skip to content

Commit bac32f4

Browse files
CI: Use actions/download-artifact v4 (#61)
GitHub decides to completely break the workflow if something gets deprecated rather than emitting a warning :(
1 parent ebf2e8e commit bac32f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
CIBW_ARCHS_MACOS: x86_64
4444
HATCH_BUILD_HOOKS_ENABLE: "true"
4545

46-
- uses: actions/upload-artifact@v3
46+
- uses: actions/upload-artifact@v4
4747
with:
4848
name: artifacts
4949
path: wheelhouse/*.whl
@@ -74,7 +74,7 @@ jobs:
7474
CIBW_ARCHS_LINUX: aarch64
7575
HATCH_BUILD_HOOKS_ENABLE: "true"
7676

77-
- uses: actions/upload-artifact@v3
77+
- uses: actions/upload-artifact@v4
7878
with:
7979
name: artifacts
8080
path: wheelhouse/*.whl
@@ -89,7 +89,7 @@ jobs:
8989
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
9090

9191
steps:
92-
- uses: actions/download-artifact@v3
92+
- uses: actions/download-artifact@v4
9393
with:
9494
name: artifacts
9595
path: dist

0 commit comments

Comments
 (0)