From a3b3d3a6bd3109ce11f362b7f17cb7783a8c9ae6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 23:10:24 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/haskell.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index ca2c186..d167361 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -82,7 +82,7 @@ jobs: cabal build --dry-run - name: restore cache - 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 }} @@ -96,7 +96,7 @@ jobs: run: cabal build all --only-dependencies - name: save cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.cache.outputs.cache-primary-key != steps.cache.outputs.cache-matched-key }} with: path: ${{ steps.setup.outputs.cabal-store }}