From 74e7d424910bfc57c6b0991d4b9235797c0d3439 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 09:09:00 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/dependabot.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdd996a..7985dd6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: components: clippy, rustfmt - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.cargo/registry/index/ @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-cargo- - name: Cache target directory - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: target/ key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }} @@ -67,7 +67,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.cargo/registry/index/ @@ -78,7 +78,7 @@ jobs: ${{ runner.os }}-cargo- - name: Cache target directory - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: target/ key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index f1b1b26..586bdf5 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -22,7 +22,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.cargo/registry/index/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e00fef..f60cb37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: targets: ${{ matrix.target }} - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.cargo/registry/index/ @@ -65,7 +65,7 @@ jobs: ${{ runner.os }}-${{ matrix.target }}-cargo- - name: Cache target directory - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: target/ key: ${{ runner.os }}-${{ matrix.target }}-target-${{ hashFiles('**/Cargo.lock') }}