From 3f62dccdabfae4a24072b67e9b3aa8d7e0f13899 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 10:02:27 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' 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 aacc360..4c68841 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@v4 + uses: actions/cache@v5 with: path: | ~/.rustup/settings.toml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache build results - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target key: build-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}