Skip to content

Commit

Permalink
Bump actions/cache from 2 to 3 (#778)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v2...v3)

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Oct 27, 2023
1 parent b35e7ee commit 7826391
Showing 1 changed file with 4 additions and 4 deletions.
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@v2
- uses: actions/cache@v3
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@v2
- uses: actions/cache@v3
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@v2
- uses: actions/cache@v3
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@v2
- uses: actions/cache@v3
with:
path: ~/.cache
key: ${{ runner.os }}-jdk8-${{ hashFiles('**/*.sbt') }}
Expand Down

0 comments on commit 7826391

Please sign in to comment.