Skip to content

Commit 7b14ba8

Browse files
committed
* Update required ruby version to be 3.0
1 parent 77ddbe1 commit 7b14ba8

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

.github/workflows/coverage.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os:
25-
- ubuntu
2624
ruby:
2725
- "3.3"
2826
gemfile:
@@ -33,7 +31,7 @@ jobs:
3331
env:
3432
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
3533
COVERALLS: true
36-
runs-on: ${{ matrix.os }}-latest
34+
runs-on: ubuntu-latest
3735
steps:
3836
- name: Checkout
3937
uses: actions/checkout@v4

.github/workflows/tests.yaml

+2-5
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os:
25-
- ubuntu
2624
ruby:
2725
- "3.1"
2826
- "3.2"
@@ -38,14 +36,13 @@ jobs:
3836
- ruby: "3.1"
3937
gemfile: gemfiles/rails_8_0.gemfile
4038
include:
41-
- os: ubuntu
42-
ruby: ruby-head
39+
- ruby: ruby-head
4340
gemfile: gemfiles/rails_8_0.gemfile
4441
allow_failures: true
4542
env:
4643
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
4744
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
48-
runs-on: ${{ matrix.os }}-latest
45+
runs-on: ubuntu-latest
4946
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
5047
steps:
5148
- name: Checkout

where_lower.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Gem::Specification.new do |s|
4848
s.add_development_dependency "gem-release", ">= 0.7"
4949
s.add_development_dependency "inch", "~> 0.5", ">= 0.5.10"
5050

51-
s.required_ruby_version = ">= 2.7.0"
51+
s.required_ruby_version = ">= 3.0.0"
5252

5353
s.required_rubygems_version = ">= 1.4.0"
5454
end

0 commit comments

Comments
 (0)