Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 22, 2024
commit b7d46d8dca5459fa9af06853e2d208d67f08d3f1
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
distribution: 'zulu'
java-version: '21'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache
key: ${{ runner.os }}-jdk21-${{ hashFiles('**/*.sbt') }}
Expand All @@ -54,7 +54,7 @@ jobs:
with:
distribution: 'zulu'
java-version: '17'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache
key: ${{ runner.os }}-jdk17-${{ hashFiles('**/*.sbt') }}
Expand All @@ -72,7 +72,7 @@ jobs:
with:
distribution: 'zulu'
java-version: '11'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache
key: ${{ runner.os }}-jdk11-${{ hashFiles('**/*.sbt') }}
Expand All @@ -90,7 +90,7 @@ jobs:
with:
distribution: 'zulu'
java-version: '8'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache
key: ${{ runner.os }}-jdk8-${{ hashFiles('**/*.sbt') }}
Expand Down