Skip to content

Commit f4dda11

Browse files
chore(deps): update actions/cache action to v4
1 parent 91823b9 commit f4dda11

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/documentation.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
run: sudo apt-get update && sudo apt-get install groovy -y
3030

3131
- name: Cache Maven Packages
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.m2/repository
3535
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
3636
restore-keys: |
3737
${{ runner.os }}-maven-
3838
3939
- name: Cache Go Packages
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/go/pkg/mod
4343
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/verify-go.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
go-version: '1.22.4'
1919
- name: Cache Golang Packages
20-
uses: actions/cache@v3
20+
uses: actions/cache@v4
2121
with:
2222
path: ~/go/pkg/mod
2323
key: ${{ runner.os }}-golang-${{ hashFiles('go.sum') }}
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
go-version: '1.22.4'
4747
- name: Cache Golang Packages
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/go/pkg/mod
5151
key: ${{ runner.os }}-golang-format${{ hashFiles('go.sum') }}
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
go-version: '1.22.4'
8282
- name: Cache Golang Packages
83-
uses: actions/cache@v3
83+
uses: actions/cache@v4
8484
with:
8585
path: ~/go/pkg/mod
8686
key: ${{ runner.os }}-golang-generate${{ hashFiles('go.sum') }}
@@ -100,7 +100,7 @@ jobs:
100100
with:
101101
go-version: '1.22.4'
102102
- name: Cache Golang Packages
103-
uses: actions/cache@v3
103+
uses: actions/cache@v4
104104
with:
105105
path: ~/go/pkg/mod
106106
key: ${{ runner.os }}-golang-dependencies${{ hashFiles('go.sum') }}

.github/workflows/verify-groovy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
distribution: zulu
2323

2424
- name: Cache Maven Packages
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: ~/.m2/repository
2828
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)