From e5b916530e620e512aa9813e76069382c0c682b7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 19:40:56 +0000 Subject: [PATCH] Update actions/cache action to v6 New-Versions: actions/cache==v6.0.0 actions/cache==v6.0.0 --- .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..e70b11a 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@v6 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@v6 # 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: