Skip to content

Commit 8f615b9

Browse files
authored
Merge pull request #865 from tdewolff/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2 parents 2f4aa14 + 28cabf0 commit 8f615b9

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/cifuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
dry-run: false
2020
language: go
2121
- name: Upload Crash
22-
uses: actions/upload-artifact@v4
22+
uses: actions/upload-artifact@v5
2323
if: failure() && steps.build.outcome == 'success'
2424
with:
2525
name: artifacts

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
cd bindings/js
6060
npm test
61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v5
6262
with:
6363
name: ${{ matrix.os }}.node
6464
path: bindings/js/prebuilds/*/*.node

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
CIBW_MANYLINUX_AARCH64_IMAGE: quay.io/pypa/manylinux_2_28_aarch64
3939
CIBW_BEFORE_ALL: .ci/ensure-go.sh; make -C bindings/py compile
4040
- name: Upload wheels
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v5
4242
with:
4343
name: wheels-linux-${{ matrix.go_target }}
4444
path: ./wheelhouse/*.whl
@@ -74,7 +74,7 @@ jobs:
7474
env:
7575
CIBW_ARCHS: ${{ matrix.cibw_target }}
7676
- name: Upload wheels
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: wheels-windows-${{ matrix.go_target }}
8080
path: ./wheelhouse/*.whl
@@ -109,7 +109,7 @@ jobs:
109109
env:
110110
CIBW_ARCHS: ${{ matrix.cibw_target }}
111111
- name: Upload wheels
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@v5
113113
with:
114114
name: wheels-macos-${{ matrix.go_target }}
115115
path: ./wheelhouse/*.whl
@@ -132,7 +132,7 @@ jobs:
132132
- name: Build package
133133
run: make -C bindings/py build
134134
- name: Upload sdist
135-
uses: actions/upload-artifact@v4
135+
uses: actions/upload-artifact@v5
136136
with:
137137
name: wheels
138138
path: bindings/py/dist/*

0 commit comments

Comments
 (0)