We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a57777e commit efec5e9Copy full SHA for efec5e9
.github/workflows/ci.yaml
@@ -14,5 +14,11 @@ jobs:
14
uses: actions/setup-java@v1
15
with:
16
java-version: ${{ matrix.java }}
17
+ - name: Cache Maven packages
18
+ uses: actions/cache@v2
19
+ with:
20
+ path: ~/.m2
21
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
22
+ restore-keys: ${{ runner.os }}-m2
23
- name: Build with Maven
24
run: mvn --batch-mode --update-snapshots verify -Dgpg.skip=true
pom.xml
@@ -110,7 +110,7 @@
110
<plugin>
111
<groupId>org.jacoco</groupId>
112
<artifactId>jacoco-maven-plugin</artifactId>
113
- <version>0.8.4</version>
+ <version>0.8.6</version>
114
<executions>
115
<execution>
116
<id>default-prepare-agent</id>
0 commit comments