Skip to content

Commit 51fa8db

Browse files
brtkwrclaude
andcommitted
ci: opt into node 24 for js actions
mathieudutour/github-tag-action@v6.2 currently runs on node 20, which github actions deprecates on 2026-06-02 (removed 2026-09-16). setting FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true at the release job level opts in now, silencing the warning and catching any incompatibility early. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a0ce91e commit 51fa8db

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
permissions:
1616
contents: write
17+
env:
18+
# Opt in early — Node.js 20 actions (e.g. mathieudutour/github-tag-action)
19+
# are deprecated and forced onto Node 24 starting 2026-06-02. Setting this
20+
# ahead of time silences the deprecation warning and surfaces breakage early.
21+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
1722
steps:
1823
- uses: actions/checkout@v6
1924
with:

0 commit comments

Comments
 (0)