diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b911b86b60..4df2664450 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,7 @@ jobs: # Otherwise, we could restore a cache from a previous month, which makes # caches grow unboundedly. - name: "Restore cache for cabal-store" - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 id: restore-cabal-store with: path: ${{ steps.setup-haskell.outputs.cabal-store }} @@ -103,7 +103,7 @@ jobs: # # See https://github.com/actions/cache/tree/v3/save#always-save-cache. - name: "Save cache for cabal-store" - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 id: save-cabal-store if: steps.build-dependencies.outcome == 'success' && steps.restore-cabal-store.outputs.cache-hit != 'true' with: @@ -132,7 +132,7 @@ jobs: # run on the `main` branch. If we run this workflow in the context of a PR, # then we will save the same results we just restored. - name: Cache benchmark baseline results - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: baseline-mempool-benchmarks.csv key: baseline-mempool-benchmarks-${{ runner.os }}-${{ matrix.ghc }}-${{ github.run_id }}