From 31cb4210d262c631f51bc66a2968850fe371bb49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:01:14 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 8122ad4..9b598e5 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Cache toolchains and crates - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.rustup/settings.toml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache build results - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: target key: build-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}