Skip to content

Commit 455efbc

Browse files
attempt 2
1 parent 3f13c62 commit 455efbc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ruby.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,17 @@ jobs:
4747
- truffleruby-head
4848
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
4949
steps:
50-
- uses: actions/checkout@v6
50+
- uses: actions/checkout@v3
5151
- uses: ruby/setup-ruby@v1
5252
with:
5353
ruby-version: ${{ matrix.ruby }}
54-
bundler: ${{ (matrix.ruby < '3' && '2.5.23') || 'latest' }}
5554

5655
- name: Install dependencies
57-
run: bundle install
56+
run: |
57+
if [[ "${{ matrix.ruby }}" < "3.1" ]]; then
58+
gem update --system 2.4.22 --no-document
59+
fi
60+
bundle install
5861
5962
- name: Run tests
6063
run: bundle exec rake test

0 commit comments

Comments
 (0)