-
Notifications
You must be signed in to change notification settings - Fork 969
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
Add node20 to runner #2732
Add node20 to runner #2732
Conversation
Node 20 is now supported by the runner (actions/runner#2732) so we should make sure this library supports it as well.
Node 20 is now supported by the runner (actions/runner#2732) so we should make sure this library supports it as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- [ ]
@@ -158,23 +163,29 @@ fi | |||
# Download the external tools only for OSX. | |||
if [[ "$PACKAGERUNTIME" == "osx-x64" ]]; then | |||
acquireExternalTool "$NODE_URL/v${NODE16_VERSION}/node-v${NODE16_VERSION}-darwin-x64.tar.gz" node16 fix_nested_dir | |||
acquireExternalTool "$NODE_URL/v${NODE20_VERSION}/node-v${NODE20_VERSION}-darwin-x64.tar.gz" node20 fix_nested_dir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mio
fi | ||
|
||
if [[ "$PACKAGERUNTIME" == "osx-arm64" ]]; then | ||
# node.js v12 doesn't support macOS on arm64. | ||
acquireExternalTool "$NODE_URL/v${NODE16_VERSION}/node-v${NODE16_VERSION}-darwin-arm64.tar.gz" node16 fix_nested_dir | ||
acquireExternalTool "$NODE_URL/v${NODE20_VERSION}/node-v${NODE20_VERSION}-darwin-arm64.tar.gz" node20 fix_nested_dir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pa
@@ -158,23 +163,29 @@ fi | |||
# Download the external tools only for OSX. | |||
if [[ "$PACKAGERUNTIME" == "osx-x64" ]]; then | |||
acquireExternalTool "$NODE_URL/v${NODE16_VERSION}/node-v${NODE16_VERSION}-darwin-x64.tar.gz" node16 fix_nested_dir | |||
acquireExternalTool "$NODE_URL/v${NODE20_VERSION}/node-v${NODE20_VERSION}-darwin-x64.tar.gz" node20 fix_nested_dir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vgf
Add node20 to runner
Part of:https://github.com/github/c2c-actions/issues/5943