Skip to content

Commit e0aceaa

Browse files
authored
Merge pull request #394 from plural/ruby-3.4.4
Update to Ruby 3.4.4.
2 parents c454a75 + 61a5bec commit e0aceaa

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": "latest"
1515
},
1616
"ghcr.io/devcontainers/features/ruby:1": {
17-
"version": "3.3.8" // Change to match Ruby version from Gemfile
17+
"version": "3.4.4" // Change to match Ruby version from Gemfile
1818
},
1919
"ghcr.io/devcontainers/features/node:1": {
2020
"version": 19 // Change Node version as required

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install Ruby and gems
4646
uses: ruby/setup-ruby@v1
4747
with:
48-
ruby-version: 3.3.8
48+
ruby-version: 3.4.4
4949
bundler-cache: true
5050

5151
- name: Set up Rails
@@ -78,7 +78,7 @@ jobs:
7878
- name: Install Ruby and gems
7979
uses: ruby/setup-ruby@v1
8080
with:
81-
ruby-version: 3.3.8
81+
ruby-version: 3.4.4
8282
bundler-cache: true
8383
- name: Security audit dependencies
8484
run: bundle exec bundler-audit --update

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Inspired by https://dennmart.com/articles/building-lean-docker-images-for-rails-apps/
22

33
#####################################################################
4-
FROM ruby:3.3.8-alpine3.20 AS build
4+
FROM ruby:3.4.4-alpine3.20 AS build
55

66
RUN apk -U upgrade && apk add --no-cache gcompat git postgresql-client build-base libpq-dev tzdata yaml-dev \
77
&& rm -rf /var/cache/apk/*
@@ -31,7 +31,7 @@ COPY . $RAILS_ROOT/
3131

3232

3333
#####################################################################
34-
FROM ruby:3.3.8-alpine3.20 AS final
34+
FROM ruby:3.4.4-alpine3.20 AS final
3535

3636
RUN apk -U upgrade && apk add --no-cache gcompat git postgresql-client tzdata \
3737
&& rm -rf /var/cache/apk/*

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.3.8'
6+
ruby '~> 3.4.4'
77

88
# Gems that have trouble with native packages on alpine.
99
gem 'google-protobuf', force_ruby_platform: true

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ GEM
589589
simplecov (~> 0.19)
590590
simplecov-html (0.13.1)
591591
simplecov_json_formatter (0.1.4)
592-
sorbet-runtime (0.5.12196)
592+
sorbet-runtime (0.5.12200)
593593
sprockets (4.2.2)
594594
concurrent-ruby (~> 1.0)
595595
logger
@@ -665,7 +665,7 @@ DEPENDENCIES
665665
sprockets-rails
666666

667667
RUBY VERSION
668-
ruby 3.3.8p144
668+
ruby 3.4.4p34
669669

670670
BUNDLED WITH
671671
2.3.26

0 commit comments

Comments
 (0)