From 75593e07fb1f24b741f406e8792294b991c086a0 Mon Sep 17 00:00:00 2001 From: wren romano <2998727+wrengr@users.noreply.github.com> Date: Wed, 20 Nov 2024 16:22:42 -0800 Subject: [PATCH] [CI] Bump haskell-actions to 2.7.6, and actions/cache to 4.1.2 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40efe71..95555cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: ghc: 'latest' steps: - uses: actions/checkout@v4 - - uses: haskell-actions/setup@v2.7.4 + - uses: haskell-actions/setup@v2.7.6 id: setup-haskell-cabal with: ghc-version: ${{ matrix.ghc }} @@ -60,7 +60,7 @@ jobs: - name: Freeze # Generates the `cabal.project.freeze` file. run: cabal freeze - - uses: actions/cache@v4.0.2 + - uses: actions/cache@v4.1.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),