From 4d8a035d60d6b09bef129cfb1544902cc7e6d94a Mon Sep 17 00:00:00 2001 From: cj-vana Date: Sat, 16 May 2026 13:18:15 -0600 Subject: [PATCH] ci: opt JS actions into Node.js 24 GitHub deprecated Node.js 20 for actions; runners will force Node 24 by June 2 2026. Opting in now via the documented FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 env var instead of pinning every action version. Applied to both firmware-build (PR check) and release (tag-driven) workflows. --- .github/workflows/firmware-build.yml | 3 +++ .github/workflows/release.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/firmware-build.yml b/.github/workflows/firmware-build.yml index b222d82..67c1055 100644 --- a/.github/workflows/firmware-build.yml +++ b/.github/workflows/firmware-build.yml @@ -11,6 +11,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: ${{ github.event_name == 'pull_request' }} +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: representative-build: name: Representative build (Heltec V3, RAK 4631) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 606cec1..f32bb4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,6 +18,9 @@ concurrency: group: release-${{ github.ref }} cancel-in-progress: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: enumerate: name: Enumerate companion targets