From 5bc978d59bc0a9132cc18decce4d8d193141df04 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 18:53:09 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/haskell-ci.yml | 4 ++-- .github/workflows/no-text.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index c95dc383..fdaf9c87 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -287,7 +287,7 @@ jobs: $CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all cabal-plan - name: restore cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }} path: ~/.cabal/store @@ -324,7 +324,7 @@ jobs: $CABAL v2-test $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='prettyprinter-ansi-terminal +doctest' all - name: save cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }} path: ~/.cabal/store diff --git a/.github/workflows/no-text.yml b/.github/workflows/no-text.yml index cd7cdef0..213659bb 100644 --- a/.github/workflows/no-text.yml +++ b/.github/workflows/no-text.yml @@ -27,7 +27,7 @@ jobs: ghc-version: ${{ matrix.ghc }} - name: Update cabal package database run: cabal update - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache cabal stuff with: path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}