action.yml currently declares using: node20. GitHub Actions runners will force all JavaScript actions onto Node 24 on 2026-06-02, and Node 20 will be removed entirely on 2026-09-16 (changelog).
Consumers currently see this warning on every run:
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: doc-detective/github-action@…
Workaround on the consumer side is FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' in the workflow env, but ideally the action would just declare using: node24 so this isn't needed.
Would you be open to a small PR that bumps action.yml and updates the build target?
action.yml currently declares
using: node20. GitHub Actions runners will force all JavaScript actions onto Node 24 on 2026-06-02, and Node 20 will be removed entirely on 2026-09-16 (changelog).Consumers currently see this warning on every run:
Workaround on the consumer side is
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'in the workflowenv, but ideally the action would just declareusing: node24so this isn't needed.Would you be open to a small PR that bumps
action.ymland updates the build target?