We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28d2898 commit 95ca1edCopy full SHA for 95ca1ed
.github/workflows/build.yml
@@ -37,11 +37,12 @@ jobs:
37
with:
38
java-version: ${{ matrix.jdk }}
39
- name: Cache Maven packages
40
- uses: actions/cache@v1
+ uses: actions/cache@v4
41
42
- path: ~/.m2
43
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
44
- restore-keys: ${{ runner.os }}-m2
+ path: ~/.m2/repository
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+ restore-keys: |
45
+ ${{ runner.os }}-maven-
46
- name: JDK 8
47
if: matrix.jdk == '8'
48
run: mvn -B clean package jacoco:report -Dmaven.gitcommitid.skip=true
0 commit comments