Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/vdf-client-hw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ 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

- 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
Expand Down Expand Up @@ -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 }}
Expand Down
Loading