Skip to content

Commit

Permalink
Bump the github-actions group with 2 updates
Browse files Browse the repository at this point in the history
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](haskell-actions/setup@dd344bc...f5975f0)

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](actions/cache@6849a64...1bd1e32)

---
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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 1, 2025
1 parent 5fa66e8 commit bbf46f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cabal-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/[email protected]
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 }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/stack-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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?
Expand All @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit bbf46f3

Please sign in to comment.