Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into stage-result
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Jan 24, 2024
2 parents 7a4b8d2 + d54f329 commit 9c6b97f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assign-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
name: 'Auto Assign PR'
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
- uses: kentaro-m/auto-assign-action@v1.2.6
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
17 changes: 11 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Generate coverage report'
name: 'CodeCov'

on:
push:
Expand All @@ -11,20 +11,25 @@ jobs:
coverage:

runs-on: ubuntu-latest
name: Coverage on Ubuntu
name: Create and upload coverage report

steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
java-version: '21'
check-latest: true
cache: 'maven'
- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
with:
maven-version: 3.9.6
- name: Generate coverage with JaCoCo
run: mvn -V --color always -ntp clean verify --file pom.xml '-Dgpg.skip'
run: mvn -V --color always -ntp clean verify '-Dgpg.skip'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v3.1.4
with:
files: 'target/site/jacoco/jacoco.xml'
token: ${{secrets.CODECOV_TOKEN}}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@

<module.name>${project.groupId}.plugin.util.api</module.name>

<error-prone.version>2.24.0</error-prone.version>
<error-prone.version>2.24.1</error-prone.version>
<j2html.version>1.4.0</j2html.version>
<streamex.version>0.8.2</streamex.version>
<testcontainers.version>1.19.3</testcontainers.version>
<codingstyle.library.version>3.32.0</codingstyle.library.version>
<codingstyle.library.version>3.40.0</codingstyle.library.version>
</properties>

<licenses>
Expand Down

0 comments on commit 9c6b97f

Please sign in to comment.