Skip to content

Commit 4ee9ece

Browse files
committed
Update from CI
1 parent 287ef3b commit 4ee9ece

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To set up the test summary action, just add a few lines of YAML to your GitHub A
1717

1818
```yaml
1919
- name: Test Summary
20-
uses: test-summary/action@v1
20+
uses: test-summary/action@v2
2121
with:
2222
paths: "test/results/**/TEST-*.xml"
2323
if: always()
@@ -27,7 +27,7 @@ Update `paths` to match the test output file(s) that your test harness produces.
2727

2828
```yaml
2929
- name: Test Summary
30-
uses: test-summary/action@v1
30+
uses: test-summary/action@v2
3131
with:
3232
paths: |
3333
test-one/**/TEST-*.xml
@@ -64,15 +64,15 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
6464
* To specify a single file, provide it directly as a string value to the `paths` key. For example:
6565

6666
```yaml
67-
- uses: test-summary/action@v1
67+
- uses: test-summary/action@v2
6868
with:
6969
paths: "tests/results.xml"
7070
```
7171

7272
* To specify multiple files, provide them as a multi-line string value to the `paths` key. For example:
7373

7474
```yaml
75-
- uses: test-summary/action@v1
75+
- uses: test-summary/action@v2
7676
with:
7777
paths: |
7878
tests-one/results.xml
@@ -83,7 +83,7 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
8383
* You can specify files as a [glob patterns](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet), allowing you to use wildcards to match multiple files. For example, to match all files named `TEST-*.xml` beneath the `tests` folder, recursively:
8484

8585
```yaml
86-
- uses: test-summary/action@v1
86+
- uses: test-summary/action@v2
8787
with:
8888
paths: "test/results/**/TEST-*.xml"
8989
```
@@ -92,7 +92,7 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
9292
This is the path to the output file to populate with the test summary markdown data. For example:
9393

9494
```yaml
95-
- uses: test-summary/action@v1
95+
- uses: test-summary/action@v2
9696
with:
9797
output: "test/results/summary.md"
9898
```

0 commit comments

Comments
 (0)