diff --git a/CHANGELOG.md b/CHANGELOG.md index f9216a8..20a8c2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 3.0.0 +* Feature: Use NodeJS 24 LTS as default runtime https://github.com/dorny/test-reporter/pull/738 + ## 2.7.0 * Feature: Add `slug-prefix` output for link anchors https://github.com/dorny/test-reporter/pull/731 * Feature: Report `jest-junit` testsuite errors as failures https://github.com/dorny/test-reporter/pull/155 diff --git a/README.md b/README.md index a5a2ec9..5f32519 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ jobs: - run: npm test # run tests (configured to use jest-junit reporter) - name: Test Report - uses: dorny/test-reporter@v2 + uses: dorny/test-reporter@v3 if: ${{ !cancelled() }} # run this step even if previous step failed with: name: JEST Tests # Name of the check run which will be created @@ -103,7 +103,7 @@ jobs: report: runs-on: ubuntu-latest steps: - - uses: dorny/test-reporter@v2 + - uses: dorny/test-reporter@v3 with: artifact: test-results # artifact name name: JEST Tests # Name of the check run which will be created @@ -114,7 +114,7 @@ jobs: ## Usage ```yaml -- uses: dorny/test-reporter@v2 +- uses: dorny/test-reporter@v3 with: # Name or regex of artifact containing test results diff --git a/package-lock.json b/package-lock.json index d876880..df32db5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "test-reporter", - "version": "2.7.0", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "test-reporter", - "version": "2.7.0", + "version": "3.0.0", "license": "MIT", "dependencies": { "@actions/core": "^3.0.0", diff --git a/package.json b/package.json index efb1147..ad67906 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "test-reporter", - "version": "2.7.0", + "version": "3.0.0", "private": true, "description": "Presents test results from popular testing frameworks as Github check run", "type": "module",