Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Process trx reports with default
if: always()
# You may also reference just the major or major.minor version
uses: im-open/process-dotnet-test-results@v3.0.1
uses: im-open/process-dotnet-test-results@v4.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```
Expand All @@ -145,7 +145,7 @@ jobs:
- name: Process trx reports
id: process-trx
# You may also reference just the major or major.minor version
uses: im-open/process-dotnet-test-results@v3.0.1
uses: im-open/process-dotnet-test-results@v4.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
base-directory: './test-results'
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
if: always()
id: process-test
# You may also reference just the major or major.minor version
uses: im-open/process-dotnet-test-results@v3.0.1
uses: im-open/process-dotnet-test-results@v4.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
create-status-check: false
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ outputs:
description: 'The ID of the PR comment that was created. This is only set if `create-pr-comment` is `true` and a PR was created successfully.'

runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
Loading