Skip to content

Commit 5c3045e

Browse files
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](actions/cache@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] <support@github.com>
1 parent a49a500 commit 5c3045e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: dtolnay/rust-toolchain@nightly
3838

3939
- name: Cache cargo registry + build artifacts
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: |
4343
~/.cargo/bin

.github/workflows/vdf-client-hw.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@ jobs:
120120
- name: Cache Boost on Windows
121121
if: matrix.os == 'windows-latest'
122122
id: cache-boost
123-
uses: actions/cache/restore@v4
123+
uses: actions/cache/restore@v5
124124
with:
125125
path: C:\local\boost_*
126126
key: windows-boost-msvc-14.3-v1
127127

128128
- name: Cache mpir checkout on Windows
129129
if: matrix.os == 'windows-latest'
130130
id: cache-mpir
131-
uses: actions/cache@v4
131+
uses: actions/cache@v5
132132
with:
133133
path: mpir_gc_x64
134134
key: windows-mpir-gc-x64-v1
@@ -173,7 +173,7 @@ jobs:
173173
174174
- name: Save Boost cache on Windows
175175
if: matrix.os == 'windows-latest' && steps.cache-boost.outputs.cache-hit != 'true'
176-
uses: actions/cache/save@v4
176+
uses: actions/cache/save@v5
177177
with:
178178
path: C:\local\boost_*
179179
key: ${{ steps.cache-boost.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)