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.
In commit f4ab4e7 of PR #4883 we noted that the
gem install ronn
step in our Windows CI workflows currently fails on newer Windows Server 2022 GitHub Actions runners, due to possibly some missing C headers or libraries.While this could be resolved by upgrading to the
ruby/setup-ruby@v1
action from the deprecatedactions/setup-ruby@v1
one, that introduced a series of issues withPATH
lookups as documented in ruby/setup-ruby#293.We therefore chose to continue using Windows 2019 runners until a resolution or workaround was found.
Fortunately, as of commit 912b607 in PR #4992 we are now using the
ronn-ng
Ruby gem instead of the unmaintainedronn
gem, and thegem install ronn-ng
workflow step succeeds on Windows 2022 while still using theactions/setup-ruby@v1
action to install a Ruby build environment. This allows us to upgrade to the latest Windows runners in GitHub Actions, although we can't yet upgrade to theruby/setup-ruby@v1
workflow action.h/t to @bk2204 for finding ronn-ng!
Resolves #4995.