Skip to content

Commit

Permalink
Fix bundler installation on older Rubies
Browse files Browse the repository at this point in the history
  • Loading branch information
pointlessone committed Jan 4, 2024
1 parent e3354ff commit 49ed218
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ jobs:
restore-keys: |
gems-${{ matrix.ruby }}-
- name: Install dependencies
if: ${{ startsWith(matrix.ruby, '2.') }}
run: |
gem install bundler -v 2.4.22
bundle config path ~/gems
bundle install --jobs 4 --retry 3
- name: Install dependencies
if: ${{ ! startsWith(matrix.ruby, '2.') }}
run: |
gem install bundler
bundle config path ~/gems
Expand Down

0 comments on commit 49ed218

Please sign in to comment.