Skip to content
Open
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
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Install pinned fuzz toolchain
run: |
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -409,7 +409,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -467,7 +467,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -520,7 +520,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -555,7 +555,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -591,7 +591,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down Expand Up @@ -659,7 +659,7 @@ jobs:
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
continue-on-error: true

- name: Fallback checkout from codeload archive
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
build: ${{ steps.matrix.outputs.build }}
runtime: ${{ steps.matrix.outputs.runtime }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Cache pinned Rust advisory auditor
id: cargo-audit-cache
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJSON(needs.native-matrix.outputs.build) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- uses: pnpm/action-setup@v5
with:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJSON(needs.native-matrix.outputs.runtime) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Download target platform package
uses: actions/download-artifact@v7
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
needs: [native-build, native-runtime]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- uses: pnpm/action-setup@v5
with:
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading