diff --git a/.github/workflows/ci_1.20.1.yml b/.github/workflows/ci_1.20.1.yml index 39b41999..cc62229b 100644 --- a/.github/workflows/ci_1.20.1.yml +++ b/.github/workflows/ci_1.20.1.yml @@ -37,7 +37,7 @@ jobs: SNAPSHOTS_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} SNAPSHOTS_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/ci_1.21.1.yml b/.github/workflows/ci_1.21.1.yml index fc84da6b..f1020804 100644 --- a/.github/workflows/ci_1.21.1.yml +++ b/.github/workflows/ci_1.21.1.yml @@ -37,7 +37,7 @@ jobs: SNAPSHOTS_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} SNAPSHOTS_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/ci_master.yml b/.github/workflows/ci_master.yml index 5a6e20e1..37cda4dd 100644 --- a/.github/workflows/ci_master.yml +++ b/.github/workflows/ci_master.yml @@ -35,7 +35,7 @@ jobs: SNAPSHOTS_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} SNAPSHOTS_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 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 d5e1dcfe..cce7c04c 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@v4 + uses: mikepenz/action-junit-report@v5 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 524cb60c..a9aa2116 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: cp -rf target/* ../target/ cd .. - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml'