Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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] <[email protected]>
  • Loading branch information
dependabot[bot] committed Jan 17, 2024
1 parent e1ebd13 commit 519d8e8
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 @@ -22,12 +22,12 @@ jobs:
distribution: 'temurin'
java-version: '11'
- name: Cache Coursier
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/coursier
key: sbt-coursier-${{ hashFiles('project/*.sbt', 'project/*.scala') }}
- name: Cache SBT
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.sbt
key: sbt-${{ hashFiles('project/build.properties', 'project/plugins.sbt') }}
Expand All @@ -49,12 +49,12 @@ jobs:
distribution: 'temurin'
java-version: '11'
- name: Cache Coursier
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/coursier
key: sbt-coursier-${{ hashFiles('project/*.sbt', 'project/*.scala') }}
- name: Cache SBT
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.sbt
key: sbt-${{ hashFiles('project/build.properties', 'project/plugins.sbt') }}
Expand Down

0 comments on commit 519d8e8

Please sign in to comment.