Skip to content

Commit 5932a21

Browse files
committed
Remove unsupported Ruby versions on CI
1 parent ba20cb1 commit 5932a21

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
- name: Set up Ruby
1010
uses: ruby/setup-ruby@v1
1111
with:
12-
ruby-version: '3.1'
12+
ruby-version: '3.2'
1313
bundler-cache: true
1414
- name: Lint
1515
run: bundle exec rake lint
1616
test:
1717
strategy:
1818
matrix:
1919
# Test oldest and newest supported versions
20-
ruby: ['jruby-9.2', 'jruby-9.4', '2.5', '3.1']
20+
ruby: ['jruby', '2.6', '3.2']
2121
os: [ubuntu-latest, macos-latest, windows-latest]
2222
runs-on: ${{ matrix.os }}
2323
steps:
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Java
2727
uses: actions/setup-java@v4
2828
with:
29-
java-version: '17'
29+
java-version: '21'
3030
distribution: 'adopt'
3131
- name: Set up Ruby
3232
uses: ruby/setup-ruby@v1

CHANGELOG.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
This document provides a high-level view of the changes to the {project-name} by release.
88
For a detailed view of what has changed, refer to the {uri-project}/commits/master[commit history] on GitHub.
99

10+
== Unreleased
11+
12+
* Remove unsupported Ruby versions on CI
13+
1014
== 0.7.0 (2022-12-18) - @slonopotamus
1115

1216
* fix handling of image paths with path separators

asciidoctor-fb2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
1010
s.summary = 'Converts AsciiDoc documents to FB2 e-book formats'
1111
s.homepage = 'https://github.com/asciidoctor/asciidoctor-fb2'
1212
s.license = 'MIT'
13-
s.required_ruby_version = '>= 2.5.0'
13+
s.required_ruby_version = '>= 2.6.0'
1414

1515
s.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^spec/}) }
1616
s.executables = `git ls-files -- bin/*`.split("\n").map do |f|

0 commit comments

Comments
 (0)