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
7 changes: 3 additions & 4 deletions .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"

permissions:
contents: read
Expand All @@ -17,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v4
with:
Comment on lines 19 to 22
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.

PR description says it fixes lingering actions/checkout versions, but there are still workflow files using the non-existent actions/checkout@v6 (e.g. .github/workflows/codeql.yml and .github/workflows/lint-and-test.yml). Either update those workflows to a valid version (likely @v4) in this PR, or adjust the PR description/scope so it matches what’s actually changed.

Copilot uses AI. Check for mistakes.
fetch-depth: 0

Expand All @@ -32,6 +33,4 @@ jobs:

- name: GITLEAKS Secret Scanning
uses: gitleaks/gitleaks-action@v2
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
continue-on-error: true
Loading