mirror of
https://github.com/nektos/act.git
synced 2026-04-26 09:25:54 +03:00
[GH-ISSUE #5883] Allow using node24 #1273
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#1273
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ChristopherHX on GitHub (Jul 23, 2025).
Original GitHub issue: https://github.com/nektos/act/issues/5883
Act version
N/A
Feature description
As per https://github.com/actions/runner/releases/tag/v2.327.0
I am in favour of allowing node00 - node99, so node upgrade would not affect act at all.
We do not bundle node and are not going to do this in near future.
@sugurutakahashi-1234 commented on GitHub (Aug 12, 2025):
GitHub Actions runner v2.327.1 supports node24, and official actions like actions/checkout@v5 have migrated to it. However, act v0.2.80 doesn't recognize node24 yet.
This forces us to stay on node20 to keep local testing working. Would be great to have node24 support in act soon.
@ericLemanissier commented on GitHub (Aug 12, 2025):
We are also impacted by this problem. Trying to use
actions/checkout@v5fails withThe runs.using key in action.yml must be one of: [composite docker node12 node16 node20 go], got node24@ChristopherHX commented on GitHub (Aug 12, 2025):
nektos/act CI is now broken due to the hello world js action upgraded to node24
@FidelusAleksander commented on GitHub (Aug 28, 2025):
@ChristopherHX is this included in any of the tagged versions?
@ChristopherHX commented on GitHub (Aug 28, 2025):
No, in two forks of act (actions-oss and gitea) it has been tagged a while ago.
@FidelusAleksander commented on GitHub (Aug 28, 2025):
@ChristopherHX I'm using
actas a devcontainer feature - which downloads from this repository release assets.Any plans on making a release on this repo so this works for the devcontainer users?
@ChristopherHX commented on GitHub (Aug 28, 2025):
Next automated release on 1. September 2025 - v0.2.81 would include this.
@millsks commented on GitHub (Aug 31, 2025):
I ran into this issue today with the prefix-dev/setup-pixi workflow. I downgraded their action to use node20, but I will check back in a few days when the new release is published. Thanks for updating this!