Skip to content

Commit 5c19b06

Browse files
committed
chore: bump action runtime to Node 24
Resolves #448. GitHub is forcing all Node 20 JavaScript actions onto Node 24 on June 2nd 2026 and surfacing a deprecation annotation on every run in the meantime. Bumping `runs.using` from `node20` to `node24` in action.yml silences the warning and gets ahead of the forced cutover. Scope is deliberately minimal: - Only `action.yml` changes. - `npm run build` reruns cleanly and produces a byte-identical `bin/action.min.js` (the runtime declaration does not affect the microbundle output target, which is already `--target node`). - `npm run format:check` clean. `npm run test` — 13 passed, 0 failed. - No source, dependency, or API changes. Only the action runtime is touched; consumers do not need to update their workflows.
1 parent e2eda2e commit 5c19b06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ branding:
1919
icon: "globe"
2020
color: "blue"
2121
runs:
22-
using: "node20"
22+
using: "node24"
2323
main: "bin/action.min.js"
2424
inputs:
2525
repoToken:

0 commit comments

Comments
 (0)