From 9009ea0cdd6cffdb761b652ea5e651b55a2926e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 15:52:59 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 5.0.4 to 5.0.5 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.4 to 5.0.5. - [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.0.4...v5.0.5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6923a99..213c096 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: toolchain: ${{ matrix.rust }} - name: Cache cargo registry - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -47,7 +47,7 @@ jobs: ${{ runner.os }}-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} @@ -55,7 +55,7 @@ jobs: ${{ runner.os }}-cargo-index- - name: Cache target directory - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: target key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.lock') }} @@ -95,7 +95,7 @@ jobs: components: clippy - name: Cache cargo registry - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} @@ -103,7 +103,7 @@ jobs: ${{ runner.os }}-cargo-registry- - name: Cache cargo index - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} @@ -111,7 +111,7 @@ jobs: ${{ runner.os }}-cargo-index- - name: Cache target directory - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: target key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.lock') }}