From fef7addc7c402dfd3f75dccedae87307278433e2 Mon Sep 17 00:00:00 2001 From: TresPies-source Date: Wed, 22 Apr 2026 19:07:21 -0500 Subject: [PATCH] ci: opt into Node.js 24 for all workflow actions (bridge) Adds FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true at workflow level to suppress Node.js 20 deprecation warnings ahead of the June 2, 2026 forced migration. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/validate-skills.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/validate-skills.yml b/.github/workflows/validate-skills.yml index 39b4a25..a8cde34 100644 --- a/.github/workflows/validate-skills.yml +++ b/.github/workflows/validate-skills.yml @@ -6,6 +6,9 @@ on: pull_request: branches: [main] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" + jobs: validate-skills: runs-on: ubuntu-latest