Skip to content

Commit b82576d

Browse files
authored
Update ruby version to 3.4.6 (#432)
2 parents 7669d8a + 5576172 commit b82576d

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/deploy-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Ruby
1515
uses: ruby/setup-ruby@v1
1616
with:
17-
ruby-version: '3.4.1'
17+
ruby-version: '3.4.6'
1818
bundler-cache: true
1919

2020
- name: Install Kamal

.github/workflows/deploy-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Ruby
2121
uses: ruby/setup-ruby@v1
2222
with:
23-
ruby-version: '3.4.1'
23+
ruby-version: '3.4.6'
2424
bundler-cache: true
2525

2626
- name: Install Kamal

.ruby-version

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

.tool-versions

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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
99

1010
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
11-
ARG RUBY_VERSION=3.4.1
11+
ARG RUBY_VERSION=3.4.6
1212
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
1313

1414
# Rails app lives here

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use Ruby 3.x with Alpine as base image for smaller size
2-
FROM ruby:3.4.1-alpine
2+
FROM ruby:3.4.6-alpine
33

44
# Set environment variables for Rails
55
ENV RAILS_ENV=development \

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.4.1"
3+
ruby "3.4.6"
44

55
gem "active_storage_validations"
66
gem "acts-as-taggable-on"

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ DEPENDENCIES
635635
web-console
636636

637637
RUBY VERSION
638-
ruby 3.4.1p0
638+
ruby 3.4.6p54
639639

640640
BUNDLED WITH
641641
2.6.2

0 commit comments

Comments
 (0)