Skip to content

Commit ede954a

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a18ed9b commit ede954a

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.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@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: ~/.gradle
3030
key: gradle
3131

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

3838
- name: Loading ivy cache
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
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@v4
97+
uses: actions/cache@v5
9898
with:
9999
path: ~/.gradle
100100
key: gradle
101101

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

108108
- name: Loading ivy cache
109-
uses: actions/cache@v4
109+
uses: actions/cache@v5
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@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ~/.gradle
4949
key: gradle
5050

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

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

0 commit comments

Comments
 (0)