From 05c6a7604c9286f713332fa8e26ba75c3b740d0b Mon Sep 17 00:00:00 2001 From: samyou-softwire Date: Mon, 23 Feb 2026 16:52:58 +0000 Subject: [PATCH] CLDC-4237: Upgrade ruby to 3.4.4 --- .ruby-version | 2 +- Dockerfile | 2 +- Gemfile | 2 +- Gemfile.lock | 2 +- docs/setup.md | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.ruby-version b/.ruby-version index 9cec7165a..f9892605c 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.1.6 +3.4.4 diff --git a/Dockerfile b/Dockerfile index 281fd6ca2..be0475399 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.1.6-alpine3.20 as base +FROM ruby:3.4.4-alpine3.20 as base WORKDIR /app diff --git a/Gemfile b/Gemfile index f6e7fdac5..8d9926ffa 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } -ruby "3.1.6" +ruby "3.4.4" # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' gem "rails", "~> 7.2.2" diff --git a/Gemfile.lock b/Gemfile.lock index 34bfd3067..670e3a08b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -621,7 +621,7 @@ DEPENDENCIES webmock RUBY VERSION - ruby 3.1.6p260 + ruby 3.4.4p0 BUNDLED WITH 2.6.4 diff --git a/docs/setup.md b/docs/setup.md index f022797ec..8bf9c635f 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -70,8 +70,8 @@ We recommend using [nvm](https://github.com/nvm-sh/nvm) to manage NodeJS version 4. Install Ruby and Bundler ```bash - rbenv install 3.1.6 - rbenv global 3.1.6 + rbenv install 3.4.4 + rbenv global 3.4.4 source ~/.bashrc gem install bundler ```