Skip to content

Commit

Permalink
Bump actions/cache from 3.3.1 to 4.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.1 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@v3.3.1...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 20, 2025
1 parent 22c54c7 commit a2bdcf9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache ~/.cabal/packages
with:
path: ~/.cabal/packages
key: ${{ runner.os }}-${{ matrix.ghc }}-cabal-packages
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache ~/.cabal/store
with:
path: ~/.cabal/store
key: ${{ runner.os }}-${{ matrix.ghc }}-cabal-store
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache dist-newstyle
with:
path: dist-newstyle
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache ~/.stack
with:
path: ~/.stack
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache ~/.stack
with:
path: ~/.stack
Expand Down Expand Up @@ -108,17 +108,17 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache ~/.cabal/packages
with:
path: ~/.cabal/packages
key: ${{ runner.os }}-${{ matrix.ghc }}-cabal-packages
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache ~/.cabal/store
with:
path: ~/.cabal/store
key: ${{ runner.os }}-${{ matrix.ghc }}-cabal-store
- uses: actions/cache@v3.3.1
- uses: actions/cache@v4.2.0
name: Cache dist-newstyle
with:
path: dist-newstyle
Expand Down

0 comments on commit a2bdcf9

Please sign in to comment.