diff --git a/.github/workflows/build_deps.yml b/.github/workflows/build_deps.yml index 668d00038b..c6288330a1 100644 --- a/.github/workflows/build_deps.yml +++ b/.github/workflows/build_deps.yml @@ -35,7 +35,7 @@ jobs: # So building XOR cache loading. # We use `lookup-only` to skip pulling cache. - name: load cached deps - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache-load with: path: ${{ env.DEPS_PATH }} @@ -106,7 +106,7 @@ jobs: - name: Save cache from main branch if: ${{ !cancelled() && github.ref == 'refs/heads/main' && steps.cache-load.outputs.cache-hit != 'true' }} - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ env.DEPS_PATH }} key: ${{ steps.cache-load.outputs.cache-primary-key }} diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index 336636bbcc..d5fe5a35d2 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Cache shellcheck download id: cache-shellcheck-v0_11 - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/shellcheck key: ${{ runner.os }}-shellcheck-v0_11