Skip to content

Commit efec5e9

Browse files
committed
👷 Seems buil fails on Java 15 - Jacoco - trying an upgrade
1 parent a57777e commit efec5e9

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,11 @@ jobs:
1414
uses: actions/setup-java@v1
1515
with:
1616
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
1723
- name: Build with Maven
1824
run: mvn --batch-mode --update-snapshots verify -Dgpg.skip=true

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
<plugin>
111111
<groupId>org.jacoco</groupId>
112112
<artifactId>jacoco-maven-plugin</artifactId>
113-
<version>0.8.4</version>
113+
<version>0.8.6</version>
114114
<executions>
115115
<execution>
116116
<id>default-prepare-agent</id>

0 commit comments

Comments
 (0)