diff --git a/.github/workflows/haskell-actions.yml b/.github/workflows/haskell-actions.yml index 09303ad..bb8b5d8 100644 --- a/.github/workflows/haskell-actions.yml +++ b/.github/workflows/haskell-actions.yml @@ -47,7 +47,7 @@ jobs: # The last step generates dist-newstyle/cache/plan.json for the cache key. - name: Restore cached dependencies - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache env: key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }} @@ -63,7 +63,7 @@ jobs: # Cache dependencies already here, so that we do not have to rebuild them should the subsequent steps fail. - name: Save cached dependencies - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 # If we had an exact cache hit, trying to save the cache would error because of key clash. if: steps.cache.outputs.cache-hit != 'true' with: