Skip to content

Commit 6b9193d

Browse files
Bump actions/cache from 1 to 3 (#1082)
Bumps [actions/cache](https://github.com/actions/cache) from 1 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v1...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bogdan Kobylynskyi <[email protected]>
1 parent 750dce2 commit 6b9193d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/github.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ jobs:
2626
java-version: ${{ matrix.jdk-version }}
2727

2828
- name: Gradle cache
29-
uses: actions/cache@v1
29+
uses: actions/cache@v3
3030
with:
3131
path: ~/.gradle
3232
key: gradle
3333

3434
- name: Maven cache
35-
uses: actions/cache@v1
35+
uses: actions/cache@v3
3636
with:
3737
path: ~/.m2
3838
key: m2
3939

4040
- name: Loading ivy cache
41-
uses: actions/cache@v1
41+
uses: actions/cache@v3
4242
with:
4343
path: ~/.ivy2/cache
4444
key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}
@@ -94,19 +94,19 @@ jobs:
9494
java-version: 11
9595

9696
- name: Gradle cache
97-
uses: actions/cache@v1
97+
uses: actions/cache@v3
9898
with:
9999
path: ~/.gradle
100100
key: gradle
101101

102102
- name: Maven cache
103-
uses: actions/cache@v1
103+
uses: actions/cache@v3
104104
with:
105105
path: ~/.m2
106106
key: m2
107107

108108
- name: Loading ivy cache
109-
uses: actions/cache@v1
109+
uses: actions/cache@v3
110110
with:
111111
path: ~/.ivy2/cache
112112
key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@ jobs:
4242
java-version: 1.8
4343

4444
- name: Gradle cache
45-
uses: actions/cache@v1
45+
uses: actions/cache@v3
4646
with:
4747
path: ~/.gradle
4848
key: gradle
4949

5050
- name: Maven cache
51-
uses: actions/cache@v1
51+
uses: actions/cache@v3
5252
with:
5353
path: ~/.m2
5454
key: m2
5555

5656
- name: Loading ivy cache
57-
uses: actions/cache@v1
57+
uses: actions/cache@v3
5858
with:
5959
path: ~/.ivy2/cache
6060
key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}

0 commit comments

Comments
 (0)