Skip to content

Commit 77db9ff

Browse files
authored
Upgrade Ruby to v3.4.6 (#1292)
Release announcement: https://www.ruby-lang.org/en/news/2025/09/16/ruby-3-4-6-released/
1 parent f960d68 commit 77db9ff

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ executors:
44
rails_executor:
55
working_directory: ~/web-monitoring-db
66
docker:
7-
- image: cimg/ruby:3.4.5-node
7+
- image: cimg/ruby:3.4.6-node
88
environment:
99
RAILS_ENV: test
1010
RACK_ENV: test

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.5
1+
3.4.6

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://docs.docker.com/engine/userguide/eng-image/multistage-build
33

44
### BASE ENVIRONMENT STAGE ###
5-
FROM ruby:3.4.5-slim AS base
5+
FROM ruby:3.4.6-slim AS base
66
LABEL maintainer="[email protected]"
77

88
# Install apt based dependencies required to run Rails as
@@ -24,7 +24,7 @@ WORKDIR /app
2424
# the RubyGems. This is a separate step so the dependencies
2525
# will be cached unless changes to one of those two files
2626
# are made.
27-
COPY Gemfile Gemfile.lock ./
27+
COPY Gemfile Gemfile.lock .ruby-version ./
2828
RUN gem install bundler && bundle install --jobs 20 --retry 5
2929

3030
# Copy the main application.

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ git_source(:github) do |repo_name|
55
"https://github.com/#{repo_name}.git"
66
end
77

8-
ruby '3.4.5'
8+
ruby file: ".ruby-version"
99

1010
gem 'aws-sdk-s3', '~> 1.198'
1111
gem 'concurrent-ruby', '~> 1.3'

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ DEPENDENCIES
481481
webmock (~> 3.25)
482482

483483
RUBY VERSION
484-
ruby 3.4.5p51
484+
ruby 3.4.6p54
485485

486486
BUNDLED WITH
487487
2.5.9

0 commit comments

Comments
 (0)