File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ jobs:
184184
185185 - name : 💾 Restore cache
186186 id : cache-cabal-restore
187- uses : actions/cache/restore@v5
187+ uses : actions/cache/restore@v6
188188 env :
189189 key : build-and-test-${{ env.cache-reset-number }}-${{ matrix.runner }}-ghc-${{ steps.setup-haskell.outputs.ghc-version }}-cabal-${{ steps.setup-haskell.outputs.cabal-version }}-llvm-${{ matrix.llvm }}
190190 with :
@@ -197,7 +197,7 @@ jobs:
197197
198198 # Only save a new cache if it does not exist yet
199199 - name : 💾 Save Cabal dependencies
200- uses : actions/cache/save@v5
200+ uses : actions/cache/save@v6
201201 if : ${{ steps.cache-cabal-restore.outputs.cache-hit != 'true' }}
202202 with :
203203 path : ${{ steps.setup-haskell.outputs.cabal-store }}
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ jobs:
258258 # Do not restore the cache if it is disabled in a manual dispatch.
259259 if : ${{ github.event_name != 'workflow_dispatch' || inputs.enable_cache == 'true' }}
260260 id : restore-cache
261- uses : actions/cache/restore@v5
261+ uses : actions/cache/restore@v6
262262 env :
263263 key : build-and-test-${{ env.cache-reset-number }}-windows-ghc-${{ steps.setup-haskell.outputs.ghc-version }}-cabal-${{ steps.setup-haskell.outputs.cabal-version }}
264264 with :
@@ -277,7 +277,7 @@ jobs:
277277 # Do not save the cache if it is disabled in a manual dispatch or it
278278 # already exists.
279279 if : ${{ (github.event_name != 'workflow_dispatch' || inputs.enable_cache == 'true') && (steps.restore-cache.outputs.cache-hit != 'true') }}
280- uses : actions/cache/save@v5
280+ uses : actions/cache/save@v6
281281 with :
282282 path : ${{ steps.setup-haskell.outputs.cabal-store }}
283283 key : ${{steps.restore-cache.outputs.cache-primary-key }}
You can’t perform that action at this time.
0 commit comments