From 55c9c28c7377b93d42cf1763613b20ca51ac4d2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 05:15:11 +0000 Subject: [PATCH] Bump actions/cache from 4.2.3 to 4.2.4 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 4.2.4. - [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.2.3...v4.2.4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.2.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 523c5097..66d967a6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -57,17 +57,17 @@ jobs: rustup target add wasm32-unknown-unknown rustup target add ${{ matrix.target }} - - uses: actions/cache@v4.2.3 + - uses: actions/cache@v4.2.4 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - - uses: actions/cache@v4.2.3 + - uses: actions/cache@v4.2.4 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }} - - uses: actions/cache@v4.2.3 + - uses: actions/cache@v4.2.4 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}