Skip to content

Commit c2b1e80

Browse files
feat: drop ruby 3.0 from CI and update baseline types gems to 3.1 (#375)
1 parent e84d077 commit c2b1e80

5 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
strategy:
1616
matrix:
1717
include:
18-
- os: ubuntu-latest
19-
ruby: "3.0"
2018
- os: ubuntu-latest
2119
ruby: "3.1"
2220
- os: ubuntu-latest

.github/workflows/new-gem.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
steps:
1919
- name: Checkout repo
2020
uses: actions/checkout@v4
21-
- name: Install Ruby 3.3
21+
- name: Install Ruby 3.4
2222
uses: ruby/setup-ruby@v1
2323
with:
24-
ruby-version: "3.3"
24+
ruby-version: "3.4"
2525
- name: Install tools
2626
run: "gem install --no-document toys grpc-tools:1.62.0"
2727
- name: execute

.github/workflows/update-gems.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
steps:
1818
- name: Checkout repo
1919
uses: actions/checkout@v4
20-
- name: Install Ruby 3.3
20+
- name: Install Ruby 3.4
2121
uses: ruby/setup-ruby@v1
2222
with:
23-
ruby-version: "3.3"
23+
ruby-version: "3.4"
2424
- name: Install tools
2525
run: "gem install --no-document toys grpc-tools:1.62.0"
2626
- name: execute

google-shopping-type/google-shopping-type.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
3232
spec.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md")
3333
spec.require_paths = ["lib"]
3434

35-
spec.required_ruby_version = ">= 3.0"
35+
spec.required_ruby_version = ">= 3.1"
3636

3737
spec.add_dependency "google-protobuf", ">= 3.18", "< 5.a"
3838
end

googleapis-common-protos-types/googleapis-common-protos-types.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
3232
spec.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md")
3333
spec.require_paths = ["lib"]
3434

35-
spec.required_ruby_version = ">= 3.0"
35+
spec.required_ruby_version = ">= 3.1"
3636

3737
spec.add_dependency "google-protobuf", ">= 3.18", "< 5.a"
3838
end

0 commit comments

Comments
 (0)