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
8 changes: 4 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
make html

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: main-documentation
path: docs/_build/html
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
done

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: package-documentation
path: docs
Expand All @@ -124,13 +124,13 @@ jobs:

steps:
- name: Download main documentation
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: main-documentation
path: docs

- name: Download package documentation
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: package-documentation
path: docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
pnpm build

- name: Save wasm builds
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: hello-world-build
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: prefix-dev/[email protected].2
- uses: prefix-dev/[email protected].3

- name: Build and Test ITK-Wasm
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: playwright-report
Expand All @@ -45,7 +45,7 @@ jobs:
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: playwright-report
Expand All @@ -69,7 +69,7 @@ jobs:
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: playwright-report
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
working-directory: ./packages/core/typescript/itk-wasm
run: pnpm run test:browser

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: playwright-report-itk-wasm
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
working-directory: packages/${{ matrix.package }}/typescript
run: pnpm run test:browser

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: playwright-report-${{ matrix.package }}
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
- name: Run Playwright tests
run: pnpm run test

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: playwright-report-hello-world
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v5

- uses: prefix-dev/[email protected].2
- uses: prefix-dev/[email protected].3

- name: Set up Python ${{ env.python-version }}
uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# uploads of run results in SARIF format to the repository Actions tab.
# https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts
- name: "Upload artifact"
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: SARIF file
path: results.sarif
Expand All @@ -65,6 +65,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard (optional).
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
with:
sarif_file: results.sarif
10 changes: 5 additions & 5 deletions .github/workflows/toolchains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: prefix-dev/[email protected].2
- uses: prefix-dev/[email protected].3
- run: pixi run export-itk-wasm-env-vars

- name: Free Disk Space (Ubuntu)
Expand All @@ -31,7 +31,7 @@ jobs:
timeout_minutes: 10
command: ./src/docker/pull.sh --no-debug

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
continue-on-error: true
with:
name: docker-cache
Expand All @@ -52,7 +52,7 @@ jobs:
docker export itkwasm/wasi-base:latest | xz -e9 -T0 > ./docker-cache/itk-wasm-wasi-base.tar.xz

- name: Cache docker results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docker-cache
path: ./docker-cache
Expand All @@ -66,7 +66,7 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: prefix-dev/[email protected].2
- uses: prefix-dev/[email protected].3
- run: pixi run export-itk-wasm-env-vars

- name: Free Disk Space (Ubuntu)
Expand All @@ -78,7 +78,7 @@ jobs:
timeout_minutes: 10
command: ./src/docker/pull.sh --no-debug

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
continue-on-error: true
with:
name: docker-cache
Expand Down
Loading