Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.4.8"
- name: Checkout repo
uses: actions/checkout@v4
- name: Checkout submodules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Ruby 3.4
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
ruby-version: "3.4.8"
- name: Install tools
run: "gem install --no-document toys"
- name: execute
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Ruby 3.4
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
ruby-version: "3.4.8"
- name: Install tools
run: "gem install --no-document toys"
- name: Execute
Expand Down
4 changes: 2 additions & 2 deletions gapic-generator-ads/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# /workspace/gapic-generator.gem if building the base gem from main).
# These gem files are copied into the final runtime image.
##
FROM ruby:3.1-buster as builder
FROM ruby:3.2-buster as builder
WORKDIR /workspace

# Copy code from the local directory.
Expand All @@ -38,7 +38,7 @@ RUN gem build -o gapic-generator-ads.gem gapic-generator-ads.gemspec
# Runtime image.
# Installs the generator executables, common protos, and an entrypoint.
##
FROM ruby:3.1-buster
FROM ruby:3.2-buster
WORKDIR /workspace

# Install common protos.
Expand Down
2 changes: 1 addition & 1 deletion gapic-generator-cloud/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
##
# Base image.
##
FROM ruby:3.1-buster as base
FROM ruby:3.2-buster as base

# Set the correct locale so Ruby strings default to UTF-8
ARG DEBIAN_FRONTEND=noninteractive
Expand Down
4 changes: 2 additions & 2 deletions gapic-generator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Creates /workspace/gapic-generator.gem which is later copied into the
# final runtime image.
##
FROM ruby:3.1-buster as builder
FROM ruby:3.2-buster as builder
WORKDIR /workspace

# Copy code from the local directory.
Expand All @@ -31,7 +31,7 @@ RUN gem build -o gapic-generator.gem gapic-generator.gemspec
# Runtime image.
# Installs the generator executables, common protos, and an entrypoint.
##
FROM ruby:3.1-buster
FROM ruby:3.2-buster
WORKDIR /workspace

# Install common protos.
Expand Down