diff --git a/.github/actions/cache-restore/action.yml b/.github/actions/cache-restore/action.yml index b2898f7e43..cfc3dd809d 100644 --- a/.github/actions/cache-restore/action.yml +++ b/.github/actions/cache-restore/action.yml @@ -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 }} diff --git a/.github/actions/cache-save/action.yml b/.github/actions/cache-save/action.yml index fac418e69b..c3ba9a1c7b 100644 --- a/.github/actions/cache-save/action.yml +++ b/.github/actions/cache-save/action.yml @@ -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 }} diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 128a93f6be..915895f036 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -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 }} diff --git a/.github/workflows/lagom-template.yml b/.github/workflows/lagom-template.yml index af4b260876..4094533653 100644 --- a/.github/workflows/lagom-template.yml +++ b/.github/workflows/lagom-template.yml @@ -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') }}