From 4b1d5c09c556be6f6ad480e23289841d22b3d967 Mon Sep 17 00:00:00 2001 From: xiashtra <91220277+xiashtra@users.noreply.github.com> Date: Wed, 1 Jul 2026 22:23:22 -0500 Subject: [PATCH 1/2] ci: update action.yml Follow-up to #1100; further restrict Node to the 24 LTS branch. Node 26 may have breaking changes. --- .github/actions/setup-js-env/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-js-env/action.yml b/.github/actions/setup-js-env/action.yml index 9132f5a82f..81f7ededca 100644 --- a/.github/actions/setup-js-env/action.yml +++ b/.github/actions/setup-js-env/action.yml @@ -5,7 +5,7 @@ runs: steps: - uses: actions/setup-node@v6 with: - node-version: '>=24.18.0' + node-version: '>=24.18.0 <25' cache: 'npm' cache-dependency-path: 'package-lock.json' From 44272ce143ff5d8fc53d2f232f8c48b9d85553f9 Mon Sep 17 00:00:00 2001 From: xiashtra <91220277+xiashtra@users.noreply.github.com> Date: Wed, 1 Jul 2026 23:25:38 -0500 Subject: [PATCH 2/2] Update action.yml --- .github/actions/setup-js-env/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/setup-js-env/action.yml b/.github/actions/setup-js-env/action.yml index 81f7ededca..27086f6d20 100644 --- a/.github/actions/setup-js-env/action.yml +++ b/.github/actions/setup-js-env/action.yml @@ -5,6 +5,9 @@ runs: steps: - uses: actions/setup-node@v6 with: + # 24.17 has a bug that breaks our workflows + # 26 introduces changes that break our workflows + # @TODO: remove upper restriction once dependencies no longer fail on 26 node-version: '>=24.18.0 <25' cache: 'npm' cache-dependency-path: 'package-lock.json'