From 681efb59f1b7a4f41e72cf98a4e30f8860ab66f9 Mon Sep 17 00:00:00 2001 From: Dragan Filipovic Date: Thu, 2 Apr 2026 22:40:21 +0200 Subject: [PATCH] fix: update Node.js runtime from 20 to 24 GitHub Actions is deprecating Node.js 20 runners starting June 2, 2026. Update action runtime and CI workflows to Node.js 24. Closes #207 Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cace0c9..debc233 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [20.x] + node-version: [24.x] steps: - name: Checkout diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0999d40..e7e0931 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - node-version: [ 20.x ] + node-version: [ 24.x ] steps: - name: Checkout diff --git a/action.yml b/action.yml index 1c30b61..7b65ad7 100644 --- a/action.yml +++ b/action.yml @@ -55,7 +55,7 @@ outputs: status: description: "Status" runs: - using: "node20" + using: "node24" main: "dist/index.js" branding: color: "green"