Skip to content

Commit 7ff4255

Browse files
authored
Update Node version to address deprecation warning. (#148)
GitHub have deprecated NodeJS v20 as an environment for actions, and will be using NodeJS v24 for all actions from 2nd June 2026[1]. Currently GitHub runners print a deprecation warning in their logs showing all actions that use the node20 environment, which includes setup-bazel, so I'm updating the action to use node24, and so remove it from the deprecation warning. [1] https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
1 parent 3096290 commit 7ff4255

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
@@ -51,7 +51,7 @@ inputs:
5151
default: ${{ github.token }}
5252

5353
runs:
54-
using: node20
54+
using: node24
5555
main: dist/main/index.js
5656
post: dist/post/index.js
5757
post-if: "!cancelled()"

0 commit comments

Comments
 (0)