Skip to content

Commit 8a739f5

Browse files
authored
Bump Ruby version to >=3.3 (#425)
* bumps supported Ruby version to >=3.3 * drops Ruby 3.1 and 3.2 from CI * bumps Ruby version in Dockerfile
1 parent 5a6df3e commit 8a739f5

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ jobs:
5656
- "macos-26" # arm64
5757
- "macos-26-intel"
5858
ruby:
59-
- "ruby-3.1"
60-
- "ruby-3.2"
6159
- "ruby-3.3"
6260
- "ruby-3.4"
6361
- "ruby-4.0"
@@ -91,8 +89,6 @@ jobs:
9189
fail-fast: false
9290
matrix:
9391
ruby:
94-
- "3.1"
95-
- "3.2"
9692
- "3.3"
9793
- "3.4"
9894
- "4.0"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG RUBY_VERSION=3.2
1+
ARG RUBY_VERSION=4
22
FROM ruby:${RUBY_VERSION}
33

44
RUN test ! -f /etc/alpine-release || apk add --no-cache build-base git

mini_racer.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ Gem::Specification.new do |spec|
5050
ext/mini_racer_extension/extconf.rb
5151
]
5252

53-
spec.required_ruby_version = ">= 3.1"
53+
spec.required_ruby_version = ">= 3.3"
5454
end

0 commit comments

Comments
 (0)