Skip to content

Commit ff68875

Browse files
Bump action/cache to v4 (#422)
1 parent fab6677 commit ff68875

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/continuous-monitoring.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
java-version: 11
2929

3030
- name: Cache Gradle Wrapper
31-
uses: actions/cache@v1
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.gradle/wrapper
3434
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

.github/workflows/master-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
java-version: ${{ matrix.java }}
3232

3333
- name: Cache Gradle Modules
34-
uses: actions/cache@v1
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.gradle/caches
3737
key: gradle-caches-${{ hashFiles('**/*.gradle.kts') }}
3838

3939
- name: Cache Gradle Wrapper
40-
uses: actions/cache@v1
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/.gradle/wrapper
4343
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
@@ -71,12 +71,12 @@ jobs:
7171
with:
7272
java-version: 11
7373
- name: Cache Gradle Modules
74-
uses: actions/cache@v1
74+
uses: actions/cache@v4
7575
with:
7676
path: ~/.gradle/caches
7777
key: gradle-caches-${{ hashFiles('**/*.gradle.kts') }}
7878
- name: Cache Gradle Wrapper
79-
uses: actions/cache@v1
79+
uses: actions/cache@v4
8080
with:
8181
path: ~/.gradle/wrapper
8282
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

.github/workflows/pr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
java-version: ${{ matrix.java }}
3333

3434
- name: Cache Gradle Modules
35-
uses: actions/cache@v1
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/.gradle/caches
3838
key: gradle-caches-${{ hashFiles('**/*.gradle.kts') }}
3939

4040
- name: Cache Gradle Wrapper
41-
uses: actions/cache@v1
41+
uses: actions/cache@v4
4242
with:
4343
path: ~/.gradle/wrapper
4444
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

.github/workflows/release-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
with:
1515
java-version: 11
1616
- name: Cache Gradle Modules
17-
uses: actions/cache@v1
17+
uses: actions/cache@v4
1818
with:
1919
path: ~/.gradle/caches
2020
key: gradle-caches-${{ hashFiles('**/*.gradle.kts') }}
2121
- name: Cache Gradle Wrapper
22-
uses: actions/cache@v1
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.gradle/wrapper
2525
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

0 commit comments

Comments
 (0)