chore: update CI Ruby/Node versions and GitHub Actions - #618
Open
madogiwa0124 wants to merge 2 commits into
Open
chore: update CI Ruby/Node versions and GitHub Actions#618madogiwa0124 wants to merge 2 commits into
madogiwa0124 wants to merge 2 commits into
Conversation
- Bump .ruby-version to 4.0.6 and update ruby.yml matrix (drop EOL 3.1/3.2, add 3.4/4.0) - Add .node-version (24.19.0) and wire it via node-version-file in ruby.yml/js.yml - Update actions/checkout, actions/setup-node, pnpm/action-setup to latest majors - Drop single-value matrices in js.yml/rubocop.yml, use ruby/setup-ruby's automatic .ruby-version detection - Align experimental Rails 8.0.x/edge include entries to the newest Ruby (4.0)
2 tasks
unicode-emoji 4.0.4 restricted required_ruby_version to < 4.0, which broke bundle install on Ruby 4.0. 4.2.0 removes that upper bound.
madogiwa0124
marked this pull request as ready for review
August 14, 2026 13:49
madogiwa0124
force-pushed
the
chore/update-ci-versions
branch
from
August 14, 2026 13:52
fd270b9 to
80c7aa6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
.ruby-versionfrom3.3.6to4.0.6, drop EOL Ruby 3.1/3.2 from theruby.ymlmatrix, and add 3.4/4.0.node-version(24.19.0) and load it vianode-version-filein bothruby.ymlandjs.ymlfor consistencyactions/checkout,actions/setup-node: v4 → v7pnpm/action-setup: v4 → v6crawl.yml'sactions/checkoutstays on v4, since v5+ requires the node24 runtime, which is incompatible with the container's glibc 2.17matrixblocks injs.yml/rubocop.ymlthat had no real effect;rubocop.ymlnow relies onruby/setup-ruby's automatic.ruby-versiondetectionruby.ymlto use the newest Ruby (4.0), matching the original intent of pairing them with the latest available Rubyunicode-emoji/unicode-display_widthinGemfile.lock:unicode-emoji 4.0.4restrictedrequired_ruby_versionto< 4.0, which brokebundle installon Ruby 4.0. These are transitive dev dependencies of rubocop/standard (not in any gemspec), so this has no effect on library consumers. The bump also happens to pull in Unicode 17 data;bin/rubocopstill reports no offenses on this codebase after the updateTest plan
crawl.ymlis unchanged, so no impact there