Skip to content
This repository was archived by the owner on Feb 4, 2026. It is now read-only.

Commit e829816

Browse files
committed
chore: update Ruby version to 3.4.5 across configuration files
1 parent b96f652 commit e829816

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
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Ruby
3838
uses: ruby/setup-ruby@v1
3939
with:
40-
ruby-version: 3.3.6
40+
ruby-version: 3.4.5
4141
bundler-cache: true
4242
cache-version: 1
4343

.ruby-version

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

Dockerfile

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

33
ENV APP_ROOT=/usr/src/app
44
ENV DATABASE_PORT=5432

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
ruby '3.3.6'
3+
ruby '3.4.5'
44

55
gem 'rails', '7.2.2'
66
gem 'pg'

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ DEPENDENCIES
491491
zlib
492492

493493
RUBY VERSION
494-
ruby 3.3.6p31
494+
ruby 3.4.5p31
495495

496496
BUNDLED WITH
497497
2.6.8

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,12 @@ If you're on a Debian-based distro, you'll need some dependencies:
310310
sudo apt install build-essential cmake pkg-config nodejs
311311
```
312312

313-
First things first, you'll need to install Ruby 3.3.6. I recommend using the excellent [rbenv](https://github.com/rbenv/rbenv),
313+
First things first, you'll need to install Ruby 3.4.5. I recommend using the excellent [rbenv](https://github.com/rbenv/rbenv),
314314
and [ruby-build](https://github.com/rbenv/ruby-build).
315315

316316
```bash
317-
rbenv install 3.3.6
318-
rbenv global 3.3.6
317+
rbenv install 3.4.5
318+
rbenv global 3.4.5
319319
```
320320

321321
Next, you'll need to make sure that you have PostgreSQL installed. This can be

0 commit comments

Comments
 (0)