From f3cd87705d120a2d227032c08930ff75a43f15a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 00:44:40 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4.2.3 to 4.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 4.3.0. - [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.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... 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..0a143368 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.3.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - - uses: actions/cache@v4.2.3 + - uses: actions/cache@v4.3.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }} - - uses: actions/cache@v4.2.3 + - uses: actions/cache@v4.3.0 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}