Skip to content

Commit ad824bb

Browse files
Bump actions/cache from 3 to 4 (#1455)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f30ec9b commit ad824bb

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
@@ -24,19 +24,19 @@ jobs:
2424
distribution: 'adopt'
2525

2626
- name: Gradle cache
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.gradle
3030
key: gradle
3131

3232
- name: Maven cache
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
with:
3535
path: ~/.m2
3636
key: m2
3737

3838
- name: Loading ivy cache
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/.ivy2/cache
4242
key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}
@@ -94,19 +94,19 @@ jobs:
9494
distribution: 'adopt'
9595

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

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

108108
- name: Loading ivy cache
109-
uses: actions/cache@v3
109+
uses: actions/cache@v4
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
@@ -43,19 +43,19 @@ jobs:
4343
distribution: 'adopt'
4444

4545
- name: Gradle cache
46-
uses: actions/cache@v3
46+
uses: actions/cache@v4
4747
with:
4848
path: ~/.gradle
4949
key: gradle
5050

5151
- name: Maven cache
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ~/.m2
5555
key: m2
5656

5757
- name: Loading ivy cache
58-
uses: actions/cache@v3
58+
uses: actions/cache@v4
5959
with:
6060
path: ~/.ivy2/cache
6161
key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}

0 commit comments

Comments
 (0)