Skip to content

Commit ce780d3

Browse files
committed
downgrade ruby 2.5.9 to 2.5.8
1 parent 5ceeb09 commit ce780d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
ruby: [ '2.5', '2.6', '2.7', '3.0', '3.1' ]
10+
ruby: [ '2.5.8', '2.6', '2.7', '3.0', '3.1' ]
1111
gemfile: [ 'rails_5_0', 'rails_5_1', 'rails_5_2', 'rails_6_0', 'rails_6_1', 'rails_7_0' ]
1212
exclude:
1313
# Only test latest Rails (Of each major), on actively supported Ruby Versions
@@ -17,9 +17,9 @@ jobs:
1717
# 2.7 -> Users of this should be using Rails 5.2+
1818
# 3.0 -> Rails 6.1 and 7.0
1919
# 3.1 -> Only 7.0
20-
- { ruby: '2.5', gemfile: 'rails_5_2' }
21-
- { ruby: '2.5', gemfile: 'rails_6_1' }
22-
- { ruby: '2.5', gemfile: 'rails_7_0' }
20+
- { ruby: '2.5.8', gemfile: 'rails_5_2' }
21+
- { ruby: '2.5.8', gemfile: 'rails_6_1' }
22+
- { ruby: '2.5.8', gemfile: 'rails_7_0' }
2323
- { ruby: '2.6', gemfile: 'rails_5_0' }
2424
- { ruby: '2.6', gemfile: 'rails_5_1' }
2525
- { ruby: '2.6', gemfile: 'rails_7_0' }
@@ -45,9 +45,9 @@ jobs:
4545
bundler-cache: true
4646
- run: bundle exec rake spec
4747
- run: bundle exec rubocop
48-
# ruby-2.5.9 has issues running bundle install during specs.
48+
# ruby-2.5.8 and 2.5.9 has issues running bundle install during specs.
4949
# see errors here https://github.com/mgrunberg/cucumber-rails/runs/4824503004?check_suite_focus=true
5050
# seems incompatibility with psych gem and rubygems version.
5151
- run: gem update --system
52-
if: matrix.ruby == '2.5'
52+
if: matrix.ruby == '2.5.8'
5353
- run: bundle exec rake cucumber

0 commit comments

Comments
 (0)