Skip to content

Commit 3f86bf4

Browse files
authored
Fix adding coverage to PRs (#131)
1 parent 99ffa43 commit 3f86bf4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Add coverage to PR
4444
id: jacoco
45-
uses: madrapps/jacoco-report@v1.2
45+
uses: madrapps/jacoco-report@v1.7.1
4646
with:
4747
paths: ${{ github.workspace }}/target/site/jacoco/jacoco.xml
4848
token: ${{ secrets.GITHUB_TOKEN }}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ under the License.
8383
<assertj.core.version>3.21.0</assertj.core.version>
8484
<mockito.version>4.0.0</mockito.version>
8585
<wiremock.version>2.27.2</wiremock.version>
86-
<jacoco.plugin.version>0.8.7</jacoco.plugin.version>
86+
<jacoco.plugin.version>0.8.12</jacoco.plugin.version>
8787
<maven.shade.plugin.version>3.1.1</maven.shade.plugin.version>
8888
<mockito-inline.version>4.6.1</mockito-inline.version>
8989
</properties>
@@ -298,7 +298,7 @@ under the License.
298298
<version>3.0.0-M5</version>
299299
<configuration>
300300
<!-- argLine needed for Flink 1.16 and 1.17 or there are unit test errors-->
301-
<argLine>--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
301+
<argLine>@{argLine} --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
302302
</configuration>
303303
</plugin>
304304

0 commit comments

Comments
 (0)