From bd4763a99a29a9092035ec685260ec5adbdba3ed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:10:04 +0000 Subject: [PATCH] Update actions/cache action to v5 New-Versions: actions/cache==v5 actions/cache==v5 --- .github/workflows/haskell-actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: