From b1d88a65950f6c14b60d927f37ee6849421d3b68 Mon Sep 17 00:00:00 2001 From: Stefan Ranoszek Date: Fri, 3 Jul 2026 12:04:19 +0100 Subject: [PATCH 1/2] chore: bump surefire-report-summary action and test workflow to Node 24 --- .github/actions/surefire-report-summary/action.yaml | 2 +- .github/workflows/test-surefire-action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/surefire-report-summary/action.yaml b/.github/actions/surefire-report-summary/action.yaml index 73fcb65..6f1d9ec 100644 --- a/.github/actions/surefire-report-summary/action.yaml +++ b/.github/actions/surefire-report-summary/action.yaml @@ -18,5 +18,5 @@ inputs: description: 'if set, the action will fail if the percentage of passing tests is below this threshold (e.g. 95)' default: '0' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' diff --git a/.github/workflows/test-surefire-action.yml b/.github/workflows/test-surefire-action.yml index 89bdb10..f3faa27 100644 --- a/.github/workflows/test-surefire-action.yml +++ b/.github/workflows/test-surefire-action.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '24' cache: 'npm' cache-dependency-path: .github/actions/surefire-report-summary/package-lock.json - name: Install dependencies From 52bf002403c28a539fb9ff394e8db3942bdd4d4f Mon Sep 17 00:00:00 2001 From: Stefan Ranoszek Date: Fri, 3 Jul 2026 12:11:53 +0100 Subject: [PATCH 2/2] chore: bump up action to v7 --- .github/workflows/test-surefire-action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-surefire-action.yml b/.github/workflows/test-surefire-action.yml index f3faa27..212f1b8 100644 --- a/.github/workflows/test-surefire-action.yml +++ b/.github/workflows/test-surefire-action.yml @@ -15,7 +15,7 @@ jobs: run: working-directory: .github/actions/surefire-report-summary steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-node@v4 with: node-version: '24'