From 18fb3c8ec11c712793d30ae0a2b27e114aa16fb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 02:45:49 +0000 Subject: [PATCH] ci(actions): bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage.yml | 4 ++-- .github/workflows/rust.yml | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 34ee571..cd832f6 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -14,9 +14,9 @@ jobs: components: llvm-tools-preview - uses: taiki-e/install-action@cargo-llvm-cov - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: cargo fetch - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: key: coverage-${{ steps.rust.outputs.cachekey }}-${{ hashFiles('**/Cargo.*') }} path: target/ diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2cb5552..2c94389 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,7 +12,7 @@ jobs: - uses: dtolnay/rust-toolchain@nightly with: components: rustfmt - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: cargo fmt --check --verbose clippy: @@ -33,9 +33,9 @@ jobs: with: toolchain: ${{ matrix.toolchain }} components: clippy - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: cargo fetch - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: key: clippy-${{ steps.rust.outputs.cachekey }}-${{ hashFiles('**/Cargo.*') }} path: target/ @@ -60,9 +60,9 @@ jobs: id: rust with: toolchain: ${{ matrix.toolchain }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: cargo fetch - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: key: test-${{ matrix.os }}-${{ steps.rust.outputs.cachekey }}-${{ hashFiles('**/Cargo.*') }} path: target/ @@ -88,7 +88,7 @@ jobs: with: targets: ${{ matrix.triple }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -104,7 +104,7 @@ jobs: echo "ARTIFACT_NAME=$name" >> $GITHUB_ENV - run: cargo fetch --locked - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: key: release-${{ matrix.triple }}-${{ steps.rust.outputs.cachekey }}-${{ hashFiles('**/Cargo.*') }} path: target/