Skip to content

Commit e55fff4

Browse files
committed
Update GitHub Actions to use rubies >= 3.0.
1 parent 8a04a44 commit e55fff4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Install and set up ruby
1313
uses: ruby/setup-ruby@v1
1414
with:
15-
ruby-version: 2.4
15+
ruby-version: '3.0'
1616
bundler-cache: true
1717

1818
- name: Rubocop

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu]
11-
ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4', head, jruby, jruby-head, truffleruby, truffleruby-head]
11+
ruby: ['3.0', '3.1', '3.2', '3.3', '3.4', head, jruby, jruby-head, truffleruby, truffleruby-head]
1212
include:
1313
- os: macos
14-
ruby: '2.6'
14+
ruby: '3.0'
1515
- os: windows
16-
ruby: '2.4.10'
16+
ruby: '3.0'
1717
runs-on: ${{ matrix.os }}-latest
1818
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.os == 'windows' }}
1919
steps:

0 commit comments

Comments
 (0)