Skip to content

Commit 04c39b3

Browse files
authored
Merge pull request #1491 from pajlada/patch-1
doc: update example versions in readme
2 parents a294a61 + 7613d63 commit 04c39b3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- name: Build and Run Tests
6565
run: # execute your tests generating test results
6666
- name: Publish Test Report
67-
uses: mikepenz/action-junit-report@v5
67+
uses: mikepenz/action-junit-report@v6
6868
if: success() || failure() # always run even if the previous step fails
6969
with:
7070
report_paths: '**/build/test-results/test/TEST-*.xml'
@@ -149,7 +149,7 @@ you can increase the memory allocation by setting an environment variable
149149
150150
```yaml
151151
- name: Publish Test Report
152-
uses: mikepenz/action-junit-report@v5
152+
uses: mikepenz/action-junit-report@v6
153153
env:
154154
NODE_OPTIONS: "--max-old-space-size=4096"
155155
if: success() || failure() # always run even if the previous step fails
@@ -247,7 +247,7 @@ jobs:
247247
workflow: ${{ github.event.workflow.id }}
248248
run_id: ${{ github.event.workflow_run.id }}
249249
- name: Publish Test Report
250-
uses: mikepenz/action-junit-report@v5
250+
uses: mikepenz/action-junit-report@v6
251251
with:
252252
commit: ${{github.event.workflow_run.head_sha}}
253253
report_paths: '**/build/test-results/test/TEST-*.xml'
@@ -287,7 +287,7 @@ jobs:
287287
288288
- name: Write out Unit Test report annotation for forked repo
289289
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
291291
with:
292292
annotate_only: true # forked repo cannot write to checks so just do annotations
293293
```

0 commit comments

Comments
 (0)