Skip to content

Commit 5790d12

Browse files
authored
Bump ruby version to 3.4.7 (#11874)
## Summary of the problem <!-- Why are these changes being made? What problem does it solve? Link any related issues to provide more details. --> Codespaces builds fail due to Ruby 3.4.7 now being available. ## Describe your changes <!-- Explain your thought process to the solution and provide a quick summary of the changes. --> Bumps the Ruby version to 3.4.7 from 3.4.5 <!-- If there are any visual changes, please attach images, videos, or gifs. -->
1 parent 46b33e4 commit 5790d12

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"build": {
2020
"args": {
2121
// Update 'VARIANT' to pick a Ruby version
22-
"VARIANT": "3.4.5-bookworm",
22+
"VARIANT": "3.4.7-bookworm",
2323
"NODE_VERSION": "22" // Node version installed by nvm (https://github.com/devcontainers/images/tree/main/src/ruby#installing-nodejs)
2424
}
2525
},

.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.7

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.5
1+
FROM ruby:3.4.7
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ DEPENDENCIES
10451045
yellow_pages!
10461046

10471047
RUBY VERSION
1048-
ruby 3.4.5p51
1048+
ruby 3.4.7p58
10491049

10501050
BUNDLED WITH
10511051
2.5.22

production.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22
# check=error=true
33

4-
ARG RUBY_VERSION=3.4.5
4+
ARG RUBY_VERSION=3.4.7
55
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
66

77
# Rails app lives here

0 commit comments

Comments
 (0)