Skip to content

Commit 3902d77

Browse files
committed
fix bundle version for ruby 2.5
1 parent 8f3974d commit 3902d77

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
gem uninstall bundler -a -x || true
2828
- name: Install Bundler
2929
run: |
30-
if [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
30+
if [[ "${{ matrix.ruby-version }}" == "2.5" ]]; then
31+
gem install bundler -v "~> 2.3.27"
32+
elif [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
3133
gem install bundler -v "~> 2.4.0"
3234
else
3335
gem install bundler

0 commit comments

Comments
 (0)