From e2a40795c59d034f57f0c796e58d9bb0cd187b03 Mon Sep 17 00:00:00 2001 From: siujamo Date: Mon, 25 May 2026 16:01:19 +0800 Subject: [PATCH] chore: opt-in to Node.js 24 for GitHub Actions to clear deprecation warning Set the environment variable FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 to true to force the workflow and runner to execute all JavaScript actions using Node.js 24. This resolves the future deprecation warning for Node.js 20. --- .github/workflows/build-and-deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index e275d22..116f12f 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -6,6 +6,7 @@ on: env: APP_NAME: delta-force-guide-server + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true jobs: # ================================================================