From 296a8f9cecf90f05d902efc6e2fe0fa3881938fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Meidahl=20M=C3=BCnsberg?= Date: Fri, 20 Feb 2026 00:45:50 +0100 Subject: [PATCH] Upgrade to Node 24 --- .github/workflows/build.yml | 2 +- action.yml | 2 +- package.json | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c42cbc8..23863799 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: file_name_in_stack_trace: true - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 cache: npm - uses: ScaCap/infra.gh-actions/ci/js/install-safe-chain@v1 - run: npm install diff --git a/action.yml b/action.yml index 01c1da67..74798440 100644 --- a/action.yml +++ b/action.yml @@ -53,5 +53,5 @@ outputs: description: 'the test outcome, either `success` or `failure`' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' diff --git a/package.json b/package.json index 426eabda..3ba097cd 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,9 @@ "Junit", "Surefire" ], + "engines": { + "node": ">=24.0.0" + }, "bugs": { "url": "https://github.com/ScaCap/action-surefire-report/issues" },