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/release-generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Ruby 3.4
uses: ruby/setup-ruby@0dafeac902942906541bc140009cdbf32665b601 # v1.315.0
with:
ruby-version: "3.4"
ruby-version: "3.4.10"
- 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 @@ -30,7 +30,7 @@ jobs:
- name: Install Ruby 3.4
uses: ruby/setup-ruby@0dafeac902942906541bc140009cdbf32665b601 # v1.315.0
with:
ruby-version: "3.4"
ruby-version: "3.4.10"
- 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@sha256:5b9ce51a2b6c646c716fece7236d341f70f485e279fbad5cfdfc4dfbf3007b48 as builder
FROM ruby:3.2-buster@sha256:8401591f18ed4cb38e2ce73fe9f655e17c3386306851e2569f0102a05dc5aab2 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@sha256:5b9ce51a2b6c646c716fece7236d341f70f485e279fbad5cfdfc4dfbf3007b48
FROM ruby:3.2-buster@sha256:8401591f18ed4cb38e2ce73fe9f655e17c3386306851e2569f0102a05dc5aab2
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@sha256:5b9ce51a2b6c646c716fece7236d341f70f485e279fbad5cfdfc4dfbf3007b48 as base
FROM ruby:3.2-buster@sha256:8401591f18ed4cb38e2ce73fe9f655e17c3386306851e2569f0102a05dc5aab2 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@sha256:5b9ce51a2b6c646c716fece7236d341f70f485e279fbad5cfdfc4dfbf3007b48 as builder
FROM ruby:3.2-buster@sha256:8401591f18ed4cb38e2ce73fe9f655e17c3386306851e2569f0102a05dc5aab2 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@sha256:5b9ce51a2b6c646c716fece7236d341f70f485e279fbad5cfdfc4dfbf3007b48
FROM ruby:3.2-buster@sha256:8401591f18ed4cb38e2ce73fe9f655e17c3386306851e2569f0102a05dc5aab2
WORKDIR /workspace

# Install common protos.
Expand Down
Loading