Skip to content

Commit 6f7d2a6

Browse files
authored
feat: Update minimum Ruby version to 2.7 (#17896)
1 parent 2d84e59 commit 6f7d2a6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,15 @@ jobs:
2424
task: "--include-spec"
2525
- os: ubuntu-latest
2626
ruby: "3.2"
27+
task: "--include-spec"
28+
- os: ubuntu-latest
29+
ruby: "3.3"
2730
task: "--include-spec --include-yardoc --include-build"
2831
- os: macos-latest
29-
ruby: "3.2"
32+
ruby: "3.3"
3033
task: "--include-spec"
3134
- os: windows-latest
32-
ruby: "3.2"
35+
ruby: "3.3"
3336
task: "--include-spec"
3437
fail-fast: false
3538
runs-on: ${{ matrix.os }}

google-apis-core/google-apis-core.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |gem|
1919
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
2020
gem.require_paths = ["lib"]
2121

22-
gem.required_ruby_version = '>= 2.5'
22+
gem.required_ruby_version = '>= 2.7'
2323
gem.add_runtime_dependency "representable", "~> 3.0"
2424
gem.add_runtime_dependency "retriable", ">= 2.0", "< 4.a"
2525
gem.add_runtime_dependency "addressable", "~> 2.5", ">= 2.5.1"

0 commit comments

Comments
 (0)