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
5 changes: 4 additions & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches: [main]

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
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.

env values in GitHub Actions are treated as strings; using an unquoted YAML boolean here can be ambiguous/inconsistent with other env entries. Consider quoting the value (e.g., "true") and adding a short comment/link explaining why forcing Node 24 is needed, since this setting applies to all JavaScript-based actions in the workflow and could affect third-party actions unexpectedly.

Suggested change
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
# Force JavaScript-based actions in this workflow to run on Node 24.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

Copilot uses AI. Check for mistakes.

permissions:
contents: write

Expand All @@ -14,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
env:
REGISTRY: docker.io
IMAGE_NAME: writenotenow/do-manager
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
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.

env values in GitHub Actions are treated as strings; using an unquoted YAML boolean here can be ambiguous/inconsistent with other env entries. Consider quoting the value (e.g., "true") and adding a short comment/link explaining why forcing Node 24 is needed, since this setting applies to all JavaScript-based actions in the workflow and could affect third-party actions unexpectedly.

Suggested change
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"

Copilot uses AI. Check for mistakes.

permissions:
contents: read
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/secrets-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [main]

env:
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.

env values in GitHub Actions are treated as strings; using an unquoted YAML boolean here can be ambiguous/inconsistent with other env entries. Consider quoting the value (e.g., "true") and adding a short comment/link explaining why forcing Node 24 is needed, since this setting applies to all JavaScript-based actions in the workflow and could affect third-party actions unexpectedly.

Copilot uses AI. Check for mistakes.
permissions:
contents: read

Expand Down
Loading