From 5c3045ee4f7be728f1c633f5085585bf54069a90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Feb 2026 11:13:42 +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/rust.yml | 2 +- .github/workflows/vdf-client-hw.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 25b3b99b..5473c18d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -37,7 +37,7 @@ jobs: - uses: dtolnay/rust-toolchain@nightly - name: Cache cargo registry + build artifacts - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/bin diff --git a/.github/workflows/vdf-client-hw.yml b/.github/workflows/vdf-client-hw.yml index d3ad6418..15e2ca96 100644 --- a/.github/workflows/vdf-client-hw.yml +++ b/.github/workflows/vdf-client-hw.yml @@ -120,7 +120,7 @@ jobs: - name: Cache Boost on Windows if: matrix.os == 'windows-latest' id: cache-boost - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: C:\local\boost_* key: windows-boost-msvc-14.3-v1 @@ -128,7 +128,7 @@ jobs: - name: Cache mpir checkout on Windows if: matrix.os == 'windows-latest' id: cache-mpir - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: mpir_gc_x64 key: windows-mpir-gc-x64-v1 @@ -173,7 +173,7 @@ jobs: - name: Save Boost cache on Windows if: matrix.os == 'windows-latest' && steps.cache-boost.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: C:\local\boost_* key: ${{ steps.cache-boost.outputs.cache-primary-key }}