From a7547cfd49c0260eec6d435622271b81d151165f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 18:46:58 +0000 Subject: [PATCH] Bump actions/cache from 3.3.2 to 3.3.3 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 3.3.3. - [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/v3.3.2...v3.3.3) --- updated-dependencies: - dependency-name: actions/cache 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 4377f2a9..9fa42136 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -93,7 +93,7 @@ jobs: run: echo "version=$(rustc --version)" >> $GITHUB_OUTPUT - name: Cache cargo index - uses: actions/cache@v3.3.2 + uses: actions/cache@v3.3.3 with: path: ~/.cargo/registry/index key: index-${{ runner.os }}-${{ github.run_number }} @@ -104,7 +104,7 @@ jobs: # run: cargo generate-lockfile - name: Cache cargo registry - uses: actions/cache@v3.3.2 + uses: actions/cache@v3.3.3 with: path: ~/.cargo/registry/cache key: registry-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }} @@ -113,7 +113,7 @@ jobs: run: cargo fetch - name: Cache target directory - uses: actions/cache@v3.3.2 + uses: actions/cache@v3.3.3 with: path: target key: cache-target-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}