From fed1f35f6df0f77bdbf1efefa1dc16fb2192d4bc Mon Sep 17 00:00:00 2001 From: KooshaPari Date: Mon, 22 Jun 2026 22:24:14 -0700 Subject: [PATCH] ci: repin dead actions/checkout SHAs to @v4 --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/deny.yml | 6 +++--- .github/workflows/sbom.yml | 2 +- .github/workflows/trufflehog.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2cf0dc8..f5e5077 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: name: Format (rustfmt) runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: dtolnay/rust-toolchain@e3f78fd1f6c2a43286e5ef3a13eea2e72ed23e1f # stable with: components: rustfmt @@ -34,7 +34,7 @@ jobs: name: Clippy (stable) runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: dtolnay/rust-toolchain@e3f78fd1f6c2a43286e5ef3a13eea2e72ed23e1f # stable with: components: clippy @@ -45,7 +45,7 @@ jobs: name: Test (stable) runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: dtolnay/rust-toolchain@e3f78fd1f6c2a43286e5ef3a13eea2e72ed23e1f # stable - uses: Swatinem/rust-cache@779680da715d629b86a86f9a2e2c439d7e8a065a # v2 - run: cargo test --all-features --locked @@ -55,7 +55,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: dtolnay/rust-toolchain@e3f78fd1f6c2a43286e5ef3a13eea2e72ed23e1f # stable - uses: Swatinem/rust-cache@779680da715d629b86a86f9a2e2c439d7e8a065a # v2 - run: cargo build --all-features --locked \ No newline at end of file diff --git a/.github/workflows/deny.yml b/.github/workflows/deny.yml index c6676dd..c0d3d8c 100644 --- a/.github/workflows/deny.yml +++ b/.github/workflows/deny.yml @@ -17,7 +17,7 @@ jobs: name: cargo-deny (advisories, licenses, bans, sources) runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: dtolnay/rust-toolchain@e3f78fd1f6c2a43286e5ef3a13eea2e72ed23e1f # stable - uses: Swatinem/rust-cache@779680da715d629b86a86f9a2e2c439d7e8a065a # v2 - uses: EmbarkStudios/cargo-deny-action@4ecc7c8b3e226df845bc2ed1d7d8b08d412f1045 # v2 @@ -28,7 +28,7 @@ jobs: name: RustSec advisory database (rustsec/audit-check) runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: rustsec/audit-check@2.0.0 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: '1.26.4' diff --git a/.github/workflows/sbom.yml b/.github/workflows/sbom.yml index 378b8d6..bc46fb1 100644 --- a/.github/workflows/sbom.yml +++ b/.github/workflows/sbom.yml @@ -13,7 +13,7 @@ jobs: name: CycloneDX SBOM runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 - uses: dtolnay/rust-toolchain@e3f78fd1f6c2a43286e5ef3a13eea2e72ed23e1f # stable - name: Install cargo-cyclonedx run: cargo install cargo-cyclonedx --locked diff --git a/.github/workflows/trufflehog.yml b/.github/workflows/trufflehog.yml index 8e36297..2f8d771 100644 --- a/.github/workflows/trufflehog.yml +++ b/.github/workflows/trufflehog.yml @@ -17,7 +17,7 @@ jobs: name: TruffleHog OSS (verified-only) runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2 + - uses: actions/checkout@v4 # v4.2.2 with: fetch-depth: 0 - name: TruffleHog OSS