diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d9fc36..637eeac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: id: cabal-store run: echo "path=$(cabal path --store-dir)" >> "$GITHUB_OUTPUT" - name: Restore cache - uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: ${{ steps.cabal-store.outputs.path }} key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('**/*.cabal') }} @@ -55,7 +55,7 @@ jobs: - name: Build dependencies run: cabal build all --only-dependencies - name: Save cache - uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: ${{ steps.cabal-store.outputs.path }} key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('**/*.cabal') }}