Skip to content

Commit 6ffedc8

Browse files
committed
drop support for EOL ruby versions
1 parent 913a3bf commit 6ffedc8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
ruby: ['2.7', '3.2', '3.3', '3.4', '4.0']
25+
ruby: ['3.2', '3.3', '3.4', '4.0']
2626
runs-on: ${{ matrix.os }}
2727

2828
steps:

.github/workflows/cross-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
id: cross-gem
3939
with:
4040
platform: ${{ matrix.platform }}
41-
ruby-versions: "2.7,3.0,3.1,3.2,3.3,3.4,4.0"
41+
ruby-versions: ${{ join(fromJSON(needs.ci-data.outputs.result).stable-ruby-versions, ',') }}
4242

4343
- uses: actions/upload-artifact@v6
4444
with:

mrml.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.extensions = Dir['ext/**/extconf.rb']
1818
spec.require_paths = ['lib']
1919

20-
spec.required_ruby_version = '>= 2.7'
20+
spec.required_ruby_version = '>= 3.2'
2121

2222
spec.add_runtime_dependency 'rb_sys'
2323
end

0 commit comments

Comments
 (0)