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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
VERSION: ${{ inputs.version }}
MAN_ARCH: ${{ inputs['package-arch'] != '' && inputs['package-arch'] || 'unknown' }}
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
# v4.1.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
# v7.0.0

- name: Install uv
if: inputs.platform != 'linux'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
RUSTUP_TOOLCHAIN: ${{ matrix.rust }}
WHITAKER_INSTALLER_VERSION: '0.2.5'
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
# Full history so the deferred cs-coverage check step can reach
# the pull request's merge base once the gate is wired in.
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
CARGO_HOME: ${{ github.workspace }}/.kani-cargo
KANI_HOME: ${{ github.workspace }}/.kani-home
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Setup Rust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
CARGO_TERM_COLOR: always
BUILD_PROFILE: debug
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Rust
uses: leynos/shared-actions/.github/actions/setup-rust@927edd45ae77be4251a8a18ca9eb5613a2e32cbd
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/netsukefile-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
RUSTUP_TOOLCHAIN: ${{ matrix.rust }}
steps:
- name: Checkout repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Rust
uses: leynos/shared-actions/.github/actions/setup-rust@927edd45ae77be4251a8a18ca9eb5613a2e32cbd
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
repo_name: ${{ steps.repo_name.outputs.value }}
steps:
- uses: >-
actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
# v4.1.2
actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
# v7.0.0
- id: repo_name
name: Determine repository name
run: echo "value=${GITHUB_REPOSITORY#*/}" >>"$GITHUB_OUTPUT"
Expand Down Expand Up @@ -216,8 +216,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: >-
actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
# v4.1.2
actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
# v7.0.0
- name: Ensure release exists (draft)
shell: bash
run: |
Expand Down
Loading