Skip to content

Commit 8254958

Browse files
committed
Update Ruby version to 3.4.4
1 parent c1b3896 commit 8254958

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.4.4

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# When pushed to dokku via git, it detects this Dockerfile and automatically chooses Docker build
33

44
# Stage 1: Build environment
5-
FROM ruby:3.2.2 AS builder
5+
FROM ruby:3.4.4 AS builder
66

77
# Define build-time variables
88
ARG AWS_ACCESS_KEY_ID
@@ -56,7 +56,7 @@ RUN bundle exec rake app:assets:precompile
5656
RUN bundle exec rake app:assets:sync
5757

5858
# Stage 2: Runtime environment
59-
FROM ruby:3.2.2
59+
FROM ruby:3.4.4
6060

6161
# Install runtime dependencies
6262
RUN apt-get update -qq \

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Dockerfile is used for the development environment via `docker compose`
22

3-
FROM ruby:3.2.2
3+
FROM ruby:3.4.4
44

55
# Add system dependencies needed for building gems, running JS, and running Chrome Headless
66
RUN apt-get update -qq \

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source 'https://rubygems.org'
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

6-
ruby '3.2.2'
6+
ruby '3.4.4'
77

88
gemspec
99

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ DEPENDENCIES
852852
web-console (>= 3.3.0)
853853

854854
RUBY VERSION
855-
ruby 3.2.2p53
855+
ruby 3.4.4p34
856856

857857
BUNDLED WITH
858858
2.4.13

0 commit comments

Comments
 (0)