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

Commit

Permalink
Bump checkstyle from 10.3 to 10.3.1 (#1853)
Browse files Browse the repository at this point in the history
* Bump checkstyle from 10.3 to 10.3.1

Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 10.3 to 10.3.1.
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-10.3...checkstyle-10.3.1)

---
updated-dependencies:
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix permission errors for Report JUnit results

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Hilmar Falkenberg <[email protected]>
  • Loading branch information
dependabot[bot] and hilmarf authored Jun 28, 2022
1 parent 39c7b21 commit 6fea07f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion .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,7 +34,17 @@ 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
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:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<junit.version>4.13.2</junit.version>
<tomcat.version>9.0.64</tomcat.version>
<findify-s3mock.version>0.2.6</findify-s3mock.version>
<checkstyle.version>10.3</checkstyle.version>
<checkstyle.version>10.3.1</checkstyle.version>
<semver4j.version>3.1.0</semver4j.version>
<upokecenter-cbor.version>4.5.2</upokecenter-cbor.version>
</properties>
Expand Down

0 comments on commit 6fea07f

Please sign in to comment.