Skip to content

Commit f5a481d

Browse files
committed
chore(deps): update dependency ruby
1 parent c06ea88 commit f5a481d

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Ruby
2121
uses: ruby/setup-ruby@v1
2222
with:
23-
ruby-version: "3.2"
23+
ruby-version: "3.4.8"
2424
- name: Checkout repo
2525
uses: actions/checkout@v4
2626
- name: Checkout submodules

.github/workflows/release-generators.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Ruby 3.4
1919
uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: "3.4"
21+
ruby-version: "3.4.8"
2222
- name: Install tools
2323
run: "gem install --no-document toys"
2424
- name: execute

.github/workflows/tag-generators.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Ruby 3.4
2525
uses: ruby/setup-ruby@v1
2626
with:
27-
ruby-version: "3.4"
27+
ruby-version: "3.4.8"
2828
- name: Install tools
2929
run: "gem install --no-document toys"
3030
- name: Execute

gapic-generator-ads/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# /workspace/gapic-generator.gem if building the base gem from main).
1919
# These gem files are copied into the final runtime image.
2020
##
21-
FROM ruby:3.1-buster as builder
21+
FROM ruby:3.2-buster as builder
2222
WORKDIR /workspace
2323

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

4444
# Install common protos.

gapic-generator-cloud/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
##
1616
# Base image.
1717
##
18-
FROM ruby:3.1-buster as base
18+
FROM ruby:3.2-buster as base
1919

2020
# Set the correct locale so Ruby strings default to UTF-8
2121
ARG DEBIAN_FRONTEND=noninteractive

gapic-generator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Creates /workspace/gapic-generator.gem which is later copied into the
1818
# final runtime image.
1919
##
20-
FROM ruby:3.1-buster as builder
20+
FROM ruby:3.2-buster as builder
2121
WORKDIR /workspace
2222

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

3737
# Install common protos.

0 commit comments

Comments
 (0)