From 297356acb409d5417ddb5d1c459ca321aec16793 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 18:19:56 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmarks.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index bc012b4f1bb..a1120791e6d 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -67,14 +67,14 @@ jobs: cabal build all --dry-run cat dist-newstyle/cache/plan.json | jq -L .github/workflows/jq-install-plan | sort | uniq > dependencies.txt - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: "Restore cache: `cabal store`" with: path: ${{ steps.setup-haskell.outputs.cabal-store }} key: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('dependencies.txt') }} restore-keys: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: "Cache `dist-newstyle`" with: path: | @@ -86,7 +86,7 @@ jobs: - name: Build dependencies run: cabal build --only-dependencies all -j - - uses: actions/cache/save@v3 + - uses: actions/cache/save@v4 name: "Save cache: `cabal store`" with: path: ${{ steps.setup-haskell.outputs.cabal-store }}