From 9ebe98317f6ce4675aa999d8acb8f225aad9b3aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 May 2026 18:54:19 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4.3.1 to 6.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.3.1 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/34e114876b0b11c390a56381ad16ebd13914f8d5...de0fac2e4500dabe0009e67214ff5f5447ce83dd) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/dependency-determinism.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/release.yml | 10 +++++----- .github/workflows/rust.yml | 2 +- .github/workflows/security.yml | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 61cf905..fccf3b3 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,7 +16,7 @@ jobs: name: Analyze Rust runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e with: languages: rust diff --git a/.github/workflows/dependency-determinism.yml b/.github/workflows/dependency-determinism.yml index cd21361..7edade6 100644 --- a/.github/workflows/dependency-determinism.yml +++ b/.github/workflows/dependency-determinism.yml @@ -15,7 +15,7 @@ jobs: deterministic-deps: runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - id: deterministic-deps uses: Ozark-Security-Labs/deterministic-deps@3333c99d112d075bfeb8df7a26f21155b2b8db9f with: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ff65a63..92dc5c6 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,7 +12,7 @@ jobs: markdown-smoke: runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - name: Verify expected docs exist run: | test -s README.md diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ffd687..572eb15 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: tag: ${{ steps.release-context.outputs.tag }} version: ${{ steps.release-context.outputs.version }} steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: fetch-depth: 0 - name: Verify release tag protection @@ -85,7 +85,7 @@ jobs: RELEASE_TAG: ${{ needs.prepare.outputs.tag }} RELEASE_VERSION: ${{ needs.prepare.outputs.version }} steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: ref: ${{ env.RELEASE_TAG }} - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 @@ -177,7 +177,7 @@ jobs: RELEASE_TAG: ${{ needs.prepare.outputs.tag }} RELEASE_VERSION: ${{ needs.prepare.outputs.version }} steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: ref: ${{ env.RELEASE_TAG }} fetch-depth: 0 @@ -242,7 +242,7 @@ jobs: RELEASE_TAG: ${{ needs.prepare.outputs.tag }} RELEASE_VERSION: ${{ needs.prepare.outputs.version }} steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: ref: ${{ env.RELEASE_TAG }} - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 @@ -341,7 +341,7 @@ jobs: contents: write steps: - name: Checkout release tag - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: ref: ${{ needs.prepare.outputs.tag }} - name: Download release archives diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 996001a..cf0b9a9 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,7 +16,7 @@ jobs: os: [blacksmith-4vcpu-ubuntu-2404, blacksmith-6vcpu-macos-latest, blacksmith-4vcpu-windows-2025] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 - name: Check formatting run: cargo fmt --all -- --check diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 18b38d7..0548d42 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -17,14 +17,14 @@ jobs: if: github.event_name == 'pull_request' runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 cargo-audit: name: Cargo audit runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 - name: Compute advisory-db cache key date id: date