From a68c07dde2d8dd6f036bd827a9cc2dc47b64269f Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Fri, 31 Mar 2023 15:43:08 +0200 Subject: [PATCH] CI: cleanup the cache key --- .github/workflows/validate.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 0ec29f46a..e069d714b 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -65,8 +65,8 @@ jobs: path: | ${{ steps.setup-haskell.outputs.cabal-store }} dist-* - key: ${{ runner.os }}-${{ matrix.ghc }}-20220419-${{ github.sha }} - restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-20220419- + key: ${{ runner.os }}-${{ matrix.ghc }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-${{ matrix.ghc }}- - uses: haskell/actions/setup@v2 id: setup-haskell @@ -236,8 +236,8 @@ jobs: path: | ${{ steps.setup-haskell.outputs.cabal-store }} dist-* - key: ${{ runner.os }}-${{ matrix.ghc }}-20220419-${{ github.sha }} - restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-20220419- + key: ${{ runner.os }}-${{ matrix.ghc }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-${{ matrix.ghc }}- - name: Install cabal-plan run: | -- 2.11.4.GIT