Skip to content

Commit 7df0b83

Browse files
Update actions/cache action to v4
1 parent 38e95d7 commit 7df0b83

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
java-version: 17
2828
architecture: x64
2929
- name: Cache Maven packages
30-
uses: actions/cache@v3.3.1
30+
uses: actions/cache@v4.0.2
3131
with:
3232
path: ~/.m2
3333
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
architecture: x64
2525

2626
- name: Cache Maven packages
27-
uses: actions/cache@v3.3.2
27+
uses: actions/cache@v4.0.2
2828
with:
2929
path: ~/.m2
3030
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
architecture: x64
3838
#Uses an action to set up a cache using a certain key based on the hash of the dependencies
3939
- name: Cache Maven packages
40-
uses: actions/cache@v3.3.1
40+
uses: actions/cache@v4.0.2
4141
with:
4242
path: ~/.m2
4343
key: ubuntu-latest-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)