From 35ed1d362d85c44a8dfbcfe8513ee99c106e4acb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orkun=20T=C3=BCmer?= Date: Fri, 13 Mar 2026 14:06:18 +0300 Subject: [PATCH] feat!: Update Node.js version from 20 to 24 (#395) Fixes https://github.com/jdx/mise-action/issues/394 This PR updates the GitHub Actions runner environment to use Node.js 24, following the deprecation notice for Node.js 20. GitHub has announced that starting June 2, 2026, Node.js 24 will become the default, and earlier versions will be restricted to ensure security and performance standards. The jdx/mise-action@v3 currently triggers a deprecation warning because it defaults to the Node.js 20 runtime. To proactively address this and avoid potential workflow failures during the transition period, we are opting into the newer runtime version now. Co-authored-by: jdx <216188+jdx@users.noreply.github.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 73da383..7bc63b6 100644 --- a/action.yml +++ b/action.yml @@ -89,5 +89,5 @@ outputs: cache-hit: description: A boolean value to indicate if a cache was hit. runs: - using: node20 + using: node24 main: dist/index.js