From 8fc954f8b72327effaf4dcd0dadc6a5e739aed7c Mon Sep 17 00:00:00 2001 From: Christian Tellefsen Date: Thu, 9 Apr 2026 11:54:00 +0200 Subject: [PATCH] fix: update action runtime from Node.js 20 to Node.js 24 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 #303 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 380b0906..bea17628 100644 --- a/action.yml +++ b/action.yml @@ -113,6 +113,6 @@ branding: icon: 'box' color: 'gray-dark' runs: - using: 'node20' + using: 'node24' main: 'dist/main.js' post: 'dist/post.js'