diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01a844f..30f86c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: ghc: 'latest' steps: - uses: actions/checkout@v4 - - uses: haskell-actions/setup@v2.6.1 + - uses: haskell-actions/setup@v2.7.0 id: setup-haskell-cabal with: ghc-version: ${{ matrix.ghc }} @@ -55,7 +55,7 @@ jobs: - name: Freeze # Generates the `cabal.project.freeze` file. run: cabal freeze - - uses: actions/cache@v4.0.0 + - uses: actions/cache@v4.0.2 name: Cache ~/.cabal/store and ./dist-newstyle # TODO(2021-10-23): Do we really want the hash in the key? # With nix-style builds it shouldn't be necessary (afaict),