Skip to content

Commit 29ab5fe

Browse files
chore(deps): bump actions/upload-artifact from 4 to 5 (#3486)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a714524 commit 29ab5fe

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build-dawn.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
${{ matrix.strip_tool }} ${{ matrix.output_dir }}/${{ matrix.library_path }}
127127
128128
- name: Upload build artifacts
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v5
130130
with:
131131
name: build-android-${{ matrix.arch }}
132132
path: ${{ matrix.output_dir }}/${{ matrix.library_path }}
@@ -138,7 +138,7 @@ jobs:
138138
139139
- name: Upload headers (from arm64-v8a build only)
140140
if: matrix.arch == 'arm64-v8a'
141-
uses: actions/upload-artifact@v4
141+
uses: actions/upload-artifact@v5
142142
with:
143143
name: dawn-headers
144144
path: dawn-headers/
@@ -203,7 +203,7 @@ jobs:
203203
-DCMAKE_BUILD_TYPE=Release
204204
ninja -C ${{ matrix.output_dir }}
205205
- name: Upload build artifacts
206-
uses: actions/upload-artifact@v4
206+
uses: actions/upload-artifact@v5
207207
with:
208208
name: build-${{ matrix.platform }}-${{ matrix.arch }}
209209
path: ${{ matrix.output_dir }}/${{ matrix.library_path }}

.github/workflows/ci-graphite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,13 @@ jobs:
237237
run: |
238238
CI=true E2E=true yarn test -i Paths --testPathIgnorePatterns Paragraphs
239239
240-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
240+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
241241
if: failure()
242242
with:
243243
path: packages/skia/src/__tests__/snapshots/
244244
name: tests-snapshots-screenshots
245245

246-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
246+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
247247
if: failure()
248248
with:
249249
path: apps/docs/static/

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: yarn pack
9696

9797
- name: Upload package artifact
98-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
98+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9999
with:
100100
name: package-tgz
101101
path: packages/skia/package.tgz
@@ -328,13 +328,13 @@ jobs:
328328
run: |
329329
CI=true yarn e2e --testPathIgnorePatterns Paragraphs
330330
331-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
331+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
332332
if: failure()
333333
with:
334334
path: packages/skia/src/__tests__/snapshots/
335335
name: tests-snapshots-screenshots
336336

337-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
337+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
338338
if: failure()
339339
with:
340340
path: apps/docs/static/

.github/workflows/test-skia-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
178178
- name: Upload screenshot
179179
if: always()
180-
uses: actions/upload-artifact@v4
180+
uses: actions/upload-artifact@v5
181181
with:
182182
name: ios-simulator-screenshot-${{ github.run_id }}
183183
path: /Users/runner/skia-test-screenshot-ios.png
@@ -340,7 +340,7 @@ jobs:
340340
341341
- name: Upload screenshot
342342
if: always()
343-
uses: actions/upload-artifact@v4
343+
uses: actions/upload-artifact@v5
344344
with:
345345
name: android-emulator-screenshot-${{ github.run_id }}
346346
path: /Users/runner/skia-test-screenshot-android.png
@@ -467,7 +467,7 @@ jobs:
467467
468468
- name: Upload screenshot
469469
if: always()
470-
uses: actions/upload-artifact@v4
470+
uses: actions/upload-artifact@v5
471471
with:
472472
name: web-screenshot-${{ github.run_id }}
473473
path: /Users/runner/skia-test-screenshot-web.png

0 commit comments

Comments
 (0)