Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Bump checkstyle from 10.3 to 10.3.1 #507

Merged
merged 4 commits into from
Jun 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ on:
- main
- release/**

permissions:
statuses: write
checks: write
pull-requests: write

jobs:
mvn-verify:
name: run mvn verify and do SonarCloud scan
Expand All @@ -29,11 +34,18 @@ jobs:
run: mvn -B sonar:sonar --fail-never
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Report JUnit results
- name: Report JUnit results at checks
uses: dorny/test-reporter@v1
if: always()
with:
name: Maven Tests
path: '**/surefire-reports/*.xml'
reporter: java-junit
fail-on-error: true
fail-on-error: true
list-suites: 'failed'
list-tests: 'failed'
- name: Report JUnit results at checks as comment
uses: EnricoMi/publish-unit-test-result-action/composite@v1
if: always()
with:
files: '**/surefire-reports/*.xml'
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<findify-s3mock.version>0.2.6</findify-s3mock.version>
<jjwt.version>0.11.5</jjwt.version>
<google-http.version>1.42.0</google-http.version>
<checkstyle.version>10.3</checkstyle.version>
<checkstyle.version>10.3.1</checkstyle.version>
<awaitility.version>4.2.0</awaitility.version>
</properties>

Expand Down