Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-dawn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
${{ matrix.strip_tool }} ${{ matrix.output_dir }}/${{ matrix.library_path }}

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-android-${{ matrix.arch }}
path: ${{ matrix.output_dir }}/${{ matrix.library_path }}
Expand All @@ -138,7 +138,7 @@ jobs:

- name: Upload headers (from arm64-v8a build only)
if: matrix.arch == 'arm64-v8a'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dawn-headers
path: dawn-headers/
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
-DCMAKE_BUILD_TYPE=Release
ninja -C ${{ matrix.output_dir }}
- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-${{ matrix.platform }}-${{ matrix.arch }}
path: ${{ matrix.output_dir }}/${{ matrix.library_path }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-graphite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@ jobs:
run: |
CI=true E2E=true yarn test -i Paths --testPathIgnorePatterns Paragraphs

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
if: failure()
with:
path: packages/skia/src/__tests__/snapshots/
name: tests-snapshots-screenshots

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
if: failure()
with:
path: apps/docs/static/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
run: yarn pack

- name: Upload package artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: package-tgz
path: packages/skia/package.tgz
Expand Down Expand Up @@ -328,13 +328,13 @@ jobs:
run: |
CI=true yarn e2e --testPathIgnorePatterns Paragraphs

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
if: failure()
with:
path: packages/skia/src/__tests__/snapshots/
name: tests-snapshots-screenshots

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
if: failure()
with:
path: apps/docs/static/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-skia-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ jobs:

- name: Upload screenshot
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ios-simulator-screenshot-${{ github.run_id }}
path: /Users/runner/skia-test-screenshot-ios.png
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:

- name: Upload screenshot
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: android-emulator-screenshot-${{ github.run_id }}
path: /Users/runner/skia-test-screenshot-android.png
Expand Down Expand Up @@ -467,7 +467,7 @@ jobs:

- name: Upload screenshot
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: web-screenshot-${{ github.run_id }}
path: /Users/runner/skia-test-screenshot-web.png
Expand Down
Loading