From 915c215ed76950401f511163c8d045ee90b21b2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 04:02:14 +0000 Subject: [PATCH] chore(deps): bump the actions group across 1 directory with 6 updates Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.1` | `6.0.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6.0.0` | `7.0.0` | | [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) | `2.8.2` | `2.9.1` | | [taiki-e/upload-rust-binary-action](https://github.com/taiki-e/upload-rust-binary-action) | `1.27.0` | `1.29.1` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `3.1.0` | `4.1.0` | | [release-plz/action](https://github.com/release-plz/action) | `0.5.120` | `0.5.128` | Updates `actions/checkout` from 6.0.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/8e8c483db84b4bee98b60c0593521ed34d9990e8...de0fac2e4500dabe0009e67214ff5f5447ce83dd) Updates `actions/upload-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/b7c566a772e6b6bfb58ed0dc250532a479d7789f...bbbca2ddaa5d8feaa63e36b76fdaad77386f024f) Updates `Swatinem/rust-cache` from 2.8.2 to 2.9.1 - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](https://github.com/swatinem/rust-cache/compare/779680da715d629ac1d338a641029a2f4372abb5...c19371144df3bb44fab255c43d04cbc2ab54d1c4) Updates `taiki-e/upload-rust-binary-action` from 1.27.0 to 1.29.1 - [Release notes](https://github.com/taiki-e/upload-rust-binary-action/releases) - [Changelog](https://github.com/taiki-e/upload-rust-binary-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/upload-rust-binary-action/compare/3962470d6e7f1993108411bc3f75a135ec67fc8c...0e34102c043ded9f2ca39f7af5cd99a540c61aff) Updates `actions/attest-build-provenance` from 3.1.0 to 4.1.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest-build-provenance/compare/00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8...a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32) Updates `release-plz/action` from 0.5.120 to 0.5.128 - [Release notes](https://github.com/release-plz/action/releases) - [Commits](https://github.com/release-plz/action/compare/487eb7b5c085a664d5c5ca05f4159bd9b591182a...1528104d2ca23787631a1c1f022abb64b34c1e11) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: Swatinem/rust-cache dependency-version: 2.9.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: taiki-e/upload-rust-binary-action dependency-version: 1.29.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/attest-build-provenance dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: release-plz/action dependency-version: 0.5.128 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/act_build.yml | 8 ++++---- .github/workflows/act_build_release.yml | 8 ++++---- .github/workflows/act_lint.yml | 10 +++++----- .github/workflows/ci-dev.yml | 2 +- .github/workflows/release-plz-pr.yml | 4 ++-- .github/workflows/release-plz-release.yml | 4 ++-- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/act_build.yml b/.github/workflows/act_build.yml index 2a1e2b4..9f3162f 100644 --- a/.github/workflows/act_build.yml +++ b/.github/workflows/act_build.yml @@ -40,7 +40,7 @@ jobs: debug_info: - packed steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Install Rust @@ -83,7 +83,7 @@ jobs: fi tar cf dummare.tar dummare zstd -T0 -6 dummare.tar - - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 if: matrix.rust == 'stable' && contains(matrix.target, 'musl') with: name: dummare_${{ matrix.target }}.tar.zst @@ -107,7 +107,7 @@ jobs: - stable - nightly steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Install Rust @@ -116,7 +116,7 @@ jobs: run: | curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz | tar -zxf - && mv cargo-binstall $HOME/.cargo/bin/ - name: Cache builds - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 - name: Compile run: cargo test --locked ${{ matrix.features }} --verbose --no-run - name: Test diff --git a/.github/workflows/act_build_release.yml b/.github/workflows/act_build_release.yml index 48bf8bd..e13a70a 100644 --- a/.github/workflows/act_build_release.yml +++ b/.github/workflows/act_build_release.yml @@ -46,7 +46,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Setup Rust @@ -88,7 +88,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout repository - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Install Rust toolchain @@ -96,7 +96,7 @@ jobs: - uses: taiki-e/install-action@3575e532701a5fc614b0c842e4119af4cc5fd16d # v2.62.60 with: tool: cross@latest - - uses: taiki-e/upload-rust-binary-action@3962470d6e7f1993108411bc3f75a135ec67fc8c # v1.27.0 + - uses: taiki-e/upload-rust-binary-action@0e34102c043ded9f2ca39f7af5cd99a540c61aff # v1.29.1 id: upload-rust-binary-action name: Upload ${{ matrix.name }} with: @@ -108,6 +108,6 @@ jobs: env: RUSTFLAGS: -D warnings -Clink-arg=-Wl,--compress-debug-sections=zlib ${{ matrix.extra_rustflags }} - name: Generate artifact attestation - uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0 + uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0 with: subject-path: "${{ steps.upload-rust-binary-action.outputs.archive }}.*" diff --git a/.github/workflows/act_lint.yml b/.github/workflows/act_lint.yml index 6e29917..142bcbe 100644 --- a/.github/workflows/act_lint.yml +++ b/.github/workflows/act_lint.yml @@ -15,7 +15,7 @@ jobs: security-events: write steps: - name: Checkout code - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false @@ -30,7 +30,7 @@ jobs: run: cargo binstall --no-confirm --no-symlinks clippy-sarif sarif-fmt - name: Cache builds - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 - name: Run rust-clippy run: | @@ -53,7 +53,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Install Rust @@ -63,7 +63,7 @@ jobs: cargo-deny: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false @@ -82,7 +82,7 @@ jobs: cargo-about: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false diff --git a/.github/workflows/ci-dev.yml b/.github/workflows/ci-dev.yml index 11da522..fdab6eb 100644 --- a/.github/workflows/ci-dev.yml +++ b/.github/workflows/ci-dev.yml @@ -29,7 +29,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: # Shallow checkouts don't work for merging, so pull in enough history to likely work fetch-depth: 75 diff --git a/.github/workflows/release-plz-pr.yml b/.github/workflows/release-plz-pr.yml index cc768e6..cde2c1d 100644 --- a/.github/workflows/release-plz-pr.yml +++ b/.github/workflows/release-plz-pr.yml @@ -26,7 +26,7 @@ jobs: cancel-in-progress: false steps: - name: Checkout repository - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: true fetch-depth: 0 @@ -34,7 +34,7 @@ jobs: - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - name: Run release-plz - uses: release-plz/action@487eb7b5c085a664d5c5ca05f4159bd9b591182a # v0.5.120 + uses: release-plz/action@1528104d2ca23787631a1c1f022abb64b34c1e11 # v0.5.128 with: command: release-pr env: diff --git a/.github/workflows/release-plz-release.yml b/.github/workflows/release-plz-release.yml index 3c42e7b..d4f7470 100644 --- a/.github/workflows/release-plz-release.yml +++ b/.github/workflows/release-plz-release.yml @@ -23,7 +23,7 @@ jobs: id-token: write steps: - name: Checkout repository - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: true fetch-depth: 0 @@ -31,7 +31,7 @@ jobs: - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - name: Run release-plz - uses: release-plz/action@487eb7b5c085a664d5c5ca05f4159bd9b591182a # v0.5.120 + uses: release-plz/action@1528104d2ca23787631a1c1f022abb64b34c1e11 # v0.5.128 with: command: release env: