Skip to content

Commit bf6a3e3

Browse files
committed
fix github action cache error
1 parent f51df67 commit bf6a3e3

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/e2e.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Check out code into the Go module directory
2828
uses: actions/checkout@v4
2929

30-
- name: Cache go dependency
30+
- name: Cache Go dependency
3131
uses: actions/cache@v4
3232
with:
3333
path: |
@@ -37,6 +37,14 @@ jobs:
3737
restore-keys: |
3838
${{ runner.os }}-go-
3939
40+
- name: Cache Maven dependency
41+
uses: actions/cache@v4
42+
with:
43+
path: ~/.m2/repository
44+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
45+
restore-keys: |
46+
${{ runner.os }}-maven-
47+
4048
- name: Integration test
4149
run: |
4250
make e2e_test e2e_test_clean

0 commit comments

Comments
 (0)