From 72e62c5d0a62ea6110a15aa490f32ec4de186551 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Jul 2026 12:30:02 +0000 Subject: [PATCH] build(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/rust.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5ba2b05..ded8bd8 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -26,12 +26,12 @@ jobs: # Caching - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: cargo-registry-${{ hashFiles('Cargo.toml') }} - name: Cache cargo index - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cargo/git key: cargo-index-${{ hashFiles('Cargo.toml') }} @@ -69,12 +69,12 @@ jobs: # Caching - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: cargo-registry-${{ hashFiles('Cargo.toml') }} - name: Cache cargo index - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cargo/git key: cargo-index-${{ hashFiles('Cargo.toml') }} @@ -122,12 +122,12 @@ jobs: # Caching - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: cargo-registry-${{ hashFiles('Cargo.toml') }} - name: Cache cargo index - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cargo/git key: cargo-index-${{ hashFiles('Cargo.toml') }}