Skip to content

Commit 3fb39c3

Browse files
authored
Merge pull request #23142 from kbrock/ruby33
Upgrading ruby to 3.3
2 parents b09ab8a + 1e99a38 commit 3fb39c3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/ci.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
ruby-version:
17-
- '3.0'
1817
- '3.1'
19-
- '3.2'
2018
- '3.3'
2119
test-suite:
2220
- vmdb

Gemfile

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
raise "Ruby versions < 3.0.1 are unsupported!" if RUBY_VERSION < "3.0.1"
2-
warn "Ruby versions >= 3.2.0 are untested!" if RUBY_VERSION >= "3.2.0"
3-
raise "Ruby versions >= 3.4.0 are unsupported!" if RUBY_VERSION >= "3.4.0"
4-
1+
ruby ">= 3.1.1", "< 3.5.0"
2+
warn "Ruby versions >= 3.4.0 are untested!" if RUBY_VERSION >= "3.4.0"
53
source 'https://rubygems.org'
64

75
plugin "bundler-inject", "~> 2.0"

0 commit comments

Comments
 (0)