Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The use of Node was upgraded from 16 to 20, per the rapidly approaching deprecation of Node 16 in GitHub Actions.
Noting that GitHub Actions does not support Node 18.
The use of Node 20 (by virtue of Node 19) has changed
keepAlive
to be true by default.This has had an impact on a great number of GitHub Actions. Reference setup-ruby for one such issue.
Additionally, the
@actions/http-client
(which we are using) had to be updated to support the changes. I've updated all of our dependencies in #98, including@actions/http-client
to pick up the necessary changes.This fix includes the final necessary step to avoid the unnecessary delays.