diff --git a/README.md b/README.md index 76c0e7a..6ec01c2 100644 --- a/README.md +++ b/README.md @@ -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 }} ``` @@ -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' @@ -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 diff --git a/action.yml b/action.yml index 8b42435..2798d89 100644 --- a/action.yml +++ b/action.yml @@ -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'