From 2240bedf08aab696777be016736011b31fe3b42e Mon Sep 17 00:00:00 2001 From: Christian Tellefsen Date: Wed, 6 May 2026 23:25:02 +0200 Subject: [PATCH] fix: update action runtime from Node.js 20 to Node.js 24 (#827) GitHub is deprecating Node.js 20 on Actions runners: - June 2, 2026: Node.js 24 forced as default - September 16, 2026: Node.js 20 removed Ref: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ Closes #826 Co-authored-by: Frostebite --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 294577e5..d895aa3a 100644 --- a/action.yml +++ b/action.yml @@ -195,5 +195,5 @@ branding: icon: 'box' color: 'gray-dark' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js'