Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.4k
Runner Support for executing Node24 Actions#3940
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
7ce5919d43638be3619ca0af6876f83aab0b15643da34f756922a35bea5b8652418b746a21e1064b51eb0e7cd9ef06af33219a6967a5e49a775dff8e46d4d0a4727b1c4dfeba2d64c3147c19eb4a15294c27093057855c4d5ae14dFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -135,12 +135,17 @@ if [[ "$currentplatform" == 'darwin' && restartinteractiverunner -eq 0 ]]; then | ||
| then | ||
| # inspect the open file handles to find the node process | ||
| # we can't actually inspect the process using ps because it uses relative paths and doesn't follow symlinks | ||
| nodever="node20" | ||
| # Try finding node24 first, then fallback to earlier versions if needed | ||
| nodever="node24" | ||
| path=$(lsof -a -g "$procgroup" -F n | grep $nodever/bin/node | grep externals | tail -1 | cut -c2-) | ||
| if [[ $? -ne 0 || -z "$path" ]] # Fallback if RunnerService.js was started with node16 | ||
| if [[ $? -ne 0 || -z "$path" ]] # Fallback if RunnerService.js was started with node20 | ||
| then | ||
| nodever="node16" | ||
| nodever="node20" | ||
| path=$(lsof -a -g "$procgroup" -F n | grep $nodever/bin/node | grep externals | tail -1 | cut -c2-) | ||
| if [[ $? -ne 0 || -z "$path" ]] # Fallback if RunnerService.js was started with node16 | ||
| then | ||
| nodever="node16" | ||
| path=$(lsof -a -g "$procgroup" -F n | grep $nodever/bin/node | grep externals | tail -1 | cut -c2-) | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think we missed an | ||
| if [[ $? -ne 0 || -z "$path" ]] # Fallback if RunnerService.js was started with node12 | ||
| then | ||
| nodever="node12" | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.