From ce7617a077030f882ba665b46c918c22538b1cd8 Mon Sep 17 00:00:00 2001 From: TresPies-source Date: Wed, 22 Apr 2026 19:07:47 -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/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0e0e1a..93dbd30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,9 @@ on: permissions: contents: read +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" + jobs: build-and-test: runs-on: ubuntu-latest