CI: Update actions/cache to @v5
This commit is contained in:
parent
e2e2806d00
commit
fe33a2f66e
4 changed files with 6 additions and 6 deletions
4
.github/actions/cache-restore/action.yml
vendored
4
.github/actions/cache-restore/action.yml
vendored
|
|
@ -40,7 +40,7 @@ runs:
|
|||
echo "timestamp=$(date -u "+%Y%m%d%H%M_%S")" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: 'Compiler Cache'
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: 'ccache'
|
||||
with:
|
||||
path: ${{ inputs.ccache_path }}
|
||||
|
|
@ -80,7 +80,7 @@ runs:
|
|||
ccache -z
|
||||
|
||||
- name: 'Restore vcpkg cache'
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: 'vcpkg'
|
||||
with:
|
||||
path: ${{ inputs.vcpkg_cache_path }}
|
||||
|
|
|
|||
4
.github/actions/cache-save/action.yml
vendored
4
.github/actions/cache-save/action.yml
vendored
|
|
@ -30,7 +30,7 @@ runs:
|
|||
ccache --evict-older-than=1d
|
||||
|
||||
- name: 'Compiler Cache'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
path: ${{ inputs.ccache_path }}
|
||||
key: ${{ inputs.ccache_primary_key }}
|
||||
|
|
@ -43,7 +43,7 @@ runs:
|
|||
ccache -s
|
||||
|
||||
- name: 'vcpkg binary cache'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
path: ${{ inputs.vcpkg_cache_path }}
|
||||
key: ${{ inputs.vcpkg_cache_primary_key }}
|
||||
|
|
|
|||
2
.github/actions/setup/action.yml
vendored
2
.github/actions/setup/action.yml
vendored
|
|
@ -140,7 +140,7 @@ runs:
|
|||
- name: 'Cache wasm-tools'
|
||||
id: 'wasm-tools-cache'
|
||||
if: ${{ inputs.type == 'build' && inputs.os != 'Linux' }}
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: ${{ github.workspace }}/${{ steps.wasm-tools.outputs.name }}
|
||||
key: ${{ steps.wasm-tools.outputs.name }}
|
||||
|
|
|
|||
2
.github/workflows/lagom-template.yml
vendored
2
.github/workflows/lagom-template.yml
vendored
|
|
@ -119,7 +119,7 @@ jobs:
|
|||
|
||||
- name: Cache the WebAssembly spec test suite
|
||||
if: ${{ inputs.os_name != 'Windows' }}
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: ${{ github.workspace }}/caches/WasmSpecTests
|
||||
key: wasm-spec-test-suite | ${{ hashFiles('Meta/CMake/wasm_spec_tests.cmake') }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue