From be9782a0820aef84e47e61ae810c617068c791f1 Mon Sep 17 00:00:00 2001 From: Chris & Mike Date: Mon, 6 Apr 2026 09:26:39 -0400 Subject: [PATCH 1/2] chore: quote node 24 forces flag and document usage --- .github/workflows/auto-release.yml | 3 ++- .github/workflows/docker-publish.yml | 3 ++- .github/workflows/secrets-scanning.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index f1bdedf..39839f5 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -5,7 +5,8 @@ on: branches: [main] env: - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + # Force JavaScript-based GitHub Actions in this workflow to run on Node 24. + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" permissions: contents: write diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 791e25d..a3efd85 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -9,7 +9,8 @@ on: env: REGISTRY: docker.io IMAGE_NAME: writenotenow/do-manager - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + # Force JavaScript-based GitHub Actions in this workflow to run on Node 24. + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" permissions: contents: read diff --git a/.github/workflows/secrets-scanning.yml b/.github/workflows/secrets-scanning.yml index d27a4b0..02e0059 100644 --- a/.github/workflows/secrets-scanning.yml +++ b/.github/workflows/secrets-scanning.yml @@ -7,7 +7,8 @@ on: branches: [main] env: - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + # Force JavaScript-based GitHub Actions in this workflow to run on Node 24. + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" permissions: contents: read From 8a10791a70530b71563f96a4aa391a691a7ffde7 Mon Sep 17 00:00:00 2001 From: Chris & Mike Date: Mon, 6 Apr 2026 09:33:03 -0400 Subject: [PATCH 2/2] chore: remove redundant step-level node 24 forces flag --- .github/workflows/secrets-scanning.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/secrets-scanning.yml b/.github/workflows/secrets-scanning.yml index 02e0059..6485faf 100644 --- a/.github/workflows/secrets-scanning.yml +++ b/.github/workflows/secrets-scanning.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -33,6 +33,4 @@ jobs: - name: GITLEAKS Secret Scanning uses: gitleaks/gitleaks-action@v2 - env: - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true continue-on-error: true