Skip to content

Commit d7ba955

Browse files
committed
Fix CI
1 parent c21697e commit d7ba955

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/ubuntu-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,13 @@ jobs:
2222
with:
2323
ruby-version: ${{ matrix.ruby }}
2424
bundler-cache: true
25+
- run: |
26+
gem update --system 3.2.3
27+
gem install bundler -v 2.3.27
28+
bundle add concurrent-ruby --version 1.3.4
29+
if: matrix.ruby == '2.5' || matrix.ruby == '2.6'
2530
- run: gem update --system
26-
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'
31+
if: matrix.ruby != '2.5' && matrix.ruby != '2.6' && matrix.ruby != '2.7' && matrix.ruby != '3.0'
2932
- run: bundle exec rake
3033
- run: bundle exec rake
3134
env:

.github/workflows/windows-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,13 @@ jobs:
2222
with:
2323
ruby-version: ${{ matrix.ruby }}
2424
bundler-cache: true
25+
- run: |
26+
gem update --system 3.2.3
27+
gem install bundler -v 2.3.27
28+
bundle add concurrent-ruby --version 1.3.4
29+
if: matrix.ruby == '2.5' || matrix.ruby == '2.6'
2530
- run: gem update --system
26-
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'
31+
if: matrix.ruby != '2.5' && matrix.ruby != '2.6' && matrix.ruby != '2.7' && matrix.ruby != '3.0'
2932
- run: bundle exec rake
3033
- run: bundle exec rake
3134
env:

0 commit comments

Comments
 (0)