|
64 | 64 | - name: Build and Run Tests |
65 | 65 | run: # execute your tests generating test results |
66 | 66 | - name: Publish Test Report |
67 | | - uses: mikepenz/action-junit-report@v5 |
| 67 | + uses: mikepenz/action-junit-report@v6 |
68 | 68 | if: success() || failure() # always run even if the previous step fails |
69 | 69 | with: |
70 | 70 | report_paths: '**/build/test-results/test/TEST-*.xml' |
@@ -149,7 +149,7 @@ you can increase the memory allocation by setting an environment variable |
149 | 149 |
|
150 | 150 | ```yaml |
151 | 151 | - name: Publish Test Report |
152 | | - uses: mikepenz/action-junit-report@v5 |
| 152 | + uses: mikepenz/action-junit-report@v6 |
153 | 153 | env: |
154 | 154 | NODE_OPTIONS: "--max-old-space-size=4096" |
155 | 155 | if: success() || failure() # always run even if the previous step fails |
@@ -247,7 +247,7 @@ jobs: |
247 | 247 | workflow: ${{ github.event.workflow.id }} |
248 | 248 | run_id: ${{ github.event.workflow_run.id }} |
249 | 249 | - name: Publish Test Report |
250 | | - uses: mikepenz/action-junit-report@v5 |
| 250 | + uses: mikepenz/action-junit-report@v6 |
251 | 251 | with: |
252 | 252 | commit: ${{github.event.workflow_run.head_sha}} |
253 | 253 | report_paths: '**/build/test-results/test/TEST-*.xml' |
@@ -287,7 +287,7 @@ jobs: |
287 | 287 |
|
288 | 288 | - name: Write out Unit Test report annotation for forked repo |
289 | 289 | if: ${{ failure() && (github.event.pull_request.head.repo.full_name != github.repository) }} |
290 | | - uses: mikepenz/action-junit-report@v5 |
| 290 | + uses: mikepenz/action-junit-report@v6 |
291 | 291 | with: |
292 | 292 | annotate_only: true # forked repo cannot write to checks so just do annotations |
293 | 293 | ``` |
|
0 commit comments