Skip to content

Commit 7609ee6

Browse files
Bump actions/cache from 2 to 3.0.1 (#122)
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3.0.1) --- 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>
1 parent 7cdf21b commit 7609ee6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
java-version: ${{ matrix.java }}
2222

2323
- name: Cache sbt
24-
uses: actions/cache@v2
24+
uses: actions/cache@v3.0.1
2525
with:
2626
path: |
2727
~/.sbt

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
- uses: actions/setup-node@v3
2121
- uses: olafurpg/setup-gpg@v3
2222
- name: Cache dependencies
23-
uses: actions/cache@v2.1.7
23+
uses: actions/cache@v3.0.1
2424
with:
2525
path: ~/.cache/coursier/v1
2626
key: ${{ runner.os }}-coursier-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}
2727
restore-keys: ${{ runner.os }}-coursier-
2828
- name: Cache .sbt
29-
uses: actions/cache@v2.1.7
29+
uses: actions/cache@v3.0.1
3030
with:
3131
path: ~/.sbt
3232
key: ${{ runner.os }}-sbt-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}

0 commit comments

Comments
 (0)