diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7bb7812..43bed2e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: SNAPSHOTS_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} SNAPSHOTS_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v5 + uses: mikepenz/action-junit-report@v6 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/pr_tests.yml b/.github/workflows/pr_tests.yml index 24d34b79..2eb519fe 100644 --- a/.github/workflows/pr_tests.yml +++ b/.github/workflows/pr_tests.yml @@ -24,7 +24,7 @@ jobs: with: arguments: test - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v5 + uses: mikepenz/action-junit-report@v6 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml' \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2f33e9d..3dcfc98b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: RELEASES_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} RELEASES_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v5 + uses: mikepenz/action-junit-report@v6 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml'