From bbf46f3482162a554513e7d12b188429582db7ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 20:14:48 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [haskell-actions/setup](https://github.com/haskell-actions/setup) and [actions/cache](https://github.com/actions/cache). Updates `haskell-actions/setup` from 2.7.6 to 2.7.8 - [Release notes](https://github.com/haskell-actions/setup/releases) - [Commits](https://github.com/haskell-actions/setup/compare/dd344bc1cec854a369df8814ce17ef337d6e6170...f5975f0810e252c045abd64a590c955a63f848db) Updates `actions/cache` from 4.1.2 to 4.2.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/6849a6489940f00c2f30c0fb92c6274307ccb58a...1bd1e32a3bdc45362d1e726936510720a7c30a57) --- updated-dependencies: - dependency-name: haskell-actions/setup dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cabal-ci.yml | 2 +- .github/workflows/stack-ci.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cabal-ci.yml b/.github/workflows/cabal-ci.yml index abc735d8..3bbae9eb 100644 --- a/.github/workflows/cabal-ci.yml +++ b/.github/workflows/cabal-ci.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4.2.2 with: submodules: true - - uses: haskell-actions/setup@dd344bc1cec854a369df8814ce17ef337d6e6170 # v2.7.6 + - uses: haskell-actions/setup@f5975f0810e252c045abd64a590c955a63f848db # v2.7.8 with: ghc-version: ${{ matrix.version.ghc }} cabal-version: ${{ matrix.version.cabal }} diff --git a/.github/workflows/stack-ci.yml b/.github/workflows/stack-ci.yml index afe4ff75..1052a228 100644 --- a/.github/workflows/stack-ci.yml +++ b/.github/workflows/stack-ci.yml @@ -83,7 +83,7 @@ jobs: # Install Stack without GHC first, so we have an opportunity to cache the # Pantry package index. - name: Install Stack - uses: haskell-actions/setup@dd344bc1cec854a369df8814ce17ef337d6e6170 # v2.7.6 + uses: haskell-actions/setup@f5975f0810e252c045abd64a590c955a63f848db # v2.7.8 id: setup-stack with: enable-stack: true @@ -100,7 +100,7 @@ jobs: # out-of-date one, so we benefit from using restore-keys to bootstrap it # with a previous index. - name: Cache Pantry Package Index - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 with: # Everything except the decompressed Hackage index tarball. Why is # that even materialized to disk? @@ -117,7 +117,7 @@ jobs: # GHC takes a while to gunzip and configure; let's try caching it # pre-configured with zstd. - name: Cache Configured GHC - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 with: # Omit the tarball itself; it'll double the cache size assuming # similar compression ratios. @@ -142,7 +142,7 @@ jobs: # other builds with the same GHC version to benefit from any packages in # common between two lockfiles. - name: Cache Dependencies - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 with: # The Stack global work directory, minus GHC installations (already # extracted from a tarball) and the Pantry package index (already @@ -178,7 +178,7 @@ jobs: # Cache pre-built modules for incremental builds, making sure to keep # builds with different dependencies separate. - name: Cache Modules - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a + uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 with: path: "**/.stack-work" key: |