From 3699f6e54c3313b63de0f642fe53bb05ad56a09a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:38:06 +0000 Subject: [PATCH] ci(deps): 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/ci.yml | 8 ++++---- .github/workflows/dependabot.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64d02e8..d5b0d48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: components: clippy, rustfmt - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-cargo- - name: Cache target directory - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target/ key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }} @@ -67,7 +67,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ @@ -78,7 +78,7 @@ jobs: ${{ runner.os }}-cargo- - name: Cache target directory - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target/ key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index dbe96bf..1b9a583 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -22,7 +22,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe91e37..2763771 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: targets: ${{ matrix.target }} - name: Cache cargo registry and index - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ @@ -65,7 +65,7 @@ jobs: ${{ runner.os }}-${{ matrix.target }}-cargo- - name: Cache target directory - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target/ key: ${{ runner.os }}-${{ matrix.target }}-target-${{ hashFiles('**/Cargo.lock') }}