From cf60339862a3aafefb99332e66b87907b9a5f006 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 17:02:59 +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/cabal-mac-win.yml | 4 ++-- .github/workflows/haskell-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cabal-mac-win.yml b/.github/workflows/cabal-mac-win.yml index f16d6d7..0a1d2ab 100644 --- a/.github/workflows/cabal-mac-win.yml +++ b/.github/workflows/cabal-mac-win.yml @@ -105,7 +105,7 @@ jobs: # cabal build --dry-run creates dist-newstyle/cache/plan.json - name: Restore cached build products - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache with: path: | @@ -127,7 +127,7 @@ jobs: cabal test all --test-show-details=direct - name: Cache build products - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: always() && steps.cache.outputs.cache-hit != 'true' with: path: | diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index 2ad4c7b..539a586 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -223,7 +223,7 @@ jobs: $CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all cabal-plan - name: restore cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }} path: ~/.cabal/store @@ -254,7 +254,7 @@ jobs: $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all - name: save cache if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }} path: ~/.cabal/store