Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/secrets-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Comment on lines 9 to +11
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow now sets FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 as a quoted string at the workflow env level, but the GITLEAKS Secret Scanning step still sets the same variable to an unquoted boolean (true). This is inconsistent with the stated goal of coercing booleans to strings, and the step-level env is also redundant since the workflow-level env already applies to all steps. Consider removing the step-level override or updating it to the same quoted string value.

Copilot uses AI. Check for mistakes.

permissions:
contents: read
Expand Down
Loading