diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e491939..3cd7857 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -54,7 +54,7 @@ jobs: cabal build all --dry-run - name: Restore cached dependencies - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache env: key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }} @@ -67,7 +67,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' run: cabal build all --only-dependencies - name: Save cached dependencies - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: steps.cache.outputs.cache-hit != 'true' with: path: ${{ steps.setup.outputs.cabal-store }}