diff --git a/.github/actions/cache-restore/action.yml b/.github/actions/cache-restore/action.yml index 15f2832d467..330403dd894 100644 --- a/.github/actions/cache-restore/action.yml +++ b/.github/actions/cache-restore/action.yml @@ -54,7 +54,7 @@ runs: echo "timestamp=$(date -u "+%Y%m%d%H%M_%S")" >> "$GITHUB_OUTPUT" - name: 'Compiler Cache' - uses: actions/cache/restore@v4 + uses: useblacksmith/cache/restore@v5 id: 'ccache' if: ${{ inputs.ccache_path != '' }} with: @@ -76,7 +76,7 @@ runs: CCACHE_DIR=${{ inputs.ccache_path }} ccache -z - name: 'Restore vcpkg cache' - uses: actions/cache/restore@v4 + uses: useblacksmith/cache/restore@v5 if: ${{ inputs.vcpkg_cache_path != '' }} id: 'vcpkg' with: diff --git a/.github/actions/cache-save/action.yml b/.github/actions/cache-save/action.yml index b839ac71ca6..009aac30931 100644 --- a/.github/actions/cache-save/action.yml +++ b/.github/actions/cache-save/action.yml @@ -34,7 +34,7 @@ runs: CCACHE_DIR=${{ inputs.ccache_path }} ccache --evict-older-than=1d - name: 'Compiler Cache' - uses: actions/cache/save@v4 + uses: useblacksmith/cache/save@v5 if: ${{ inputs.ccache_path != '' }} with: path: ${{ inputs.ccache_path }} @@ -47,7 +47,7 @@ runs: CCACHE_DIR=${{ inputs.ccache_path }} ccache -s - name: 'vcpkg binary cache' - uses: actions/cache/save@v4 + uses: useblacksmith/cache/save@v5 if: ${{ inputs.vcpkg_cache_path != '' }} with: path: ${{ inputs.vcpkg_cache_path }}