Skip to content

Commit e27b737

Browse files
committed
Update gem to fix CI error for Ruby 2.6
https://github.com/mtsmfm/language_server-protocol-ruby/actions/runs/9179048644/job/25275521882?pr=104 ``` Your RubyGems version (3.0.3.1) has a bug that prevents `required_ruby_version` from working for Bundler. Any scripts that use `gem install bundler` will break as soon as Bundler drops support for your Ruby version. Please upgrade RubyGems to avoid future breakage and silence this warning by running `gem update --system 3.2.3` /home/runner/work/language_server-protocol-ruby/language_server-protocol-ruby/vendor/bundle/ruby/2.6.0/gems/steep-1.3.0/lib/steep.rb:19:in `require': cannot load such file -- parallel/processor_count (LoadError) ```
1 parent d85bf88 commit e27b737

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ubuntu-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
bundler-cache: true
2525
- run: gem update --system
2626
if: matrix.ruby != '2.5' && matrix.ruby != '2.6' && matrix.ruby != '2.7'
27+
- run: gem update --system 3.2.3
28+
if: matrix.ruby == '2.6'
2729
- run: bundle exec rake
2830
- run: bundle exec rake
2931
env:

.github/workflows/windows-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
bundler-cache: true
2525
- run: gem update --system
2626
if: matrix.ruby != '2.5' && matrix.ruby != '2.6' && matrix.ruby != '2.7'
27+
- run: gem update --system 3.2.3
28+
if: matrix.ruby == '2.6'
2729
- run: bundle exec rake
2830
- run: bundle exec rake
2931
env:

0 commit comments

Comments
 (0)