File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 14
14
"version" : " latest"
15
15
},
16
16
"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
18
18
},
19
19
"ghcr.io/devcontainers/features/node:1" : {
20
20
"version" : 19 // Change Node version as required
Original file line number Diff line number Diff line change 45
45
- name : Install Ruby and gems
46
46
uses : ruby/setup-ruby@v1
47
47
with :
48
- ruby-version : 3.3.8
48
+ ruby-version : 3.4.4
49
49
bundler-cache : true
50
50
51
51
- name : Set up Rails
78
78
- name : Install Ruby and gems
79
79
uses : ruby/setup-ruby@v1
80
80
with :
81
- ruby-version : 3.3.8
81
+ ruby-version : 3.4.4
82
82
bundler-cache : true
83
83
- name : Security audit dependencies
84
84
run : bundle exec bundler-audit --update
Original file line number Diff line number Diff line change 1
1
# Inspired by https://dennmart.com/articles/building-lean-docker-images-for-rails-apps/
2
2
3
3
# ####################################################################
4
- FROM ruby:3.3.8 -alpine3.20 AS build
4
+ FROM ruby:3.4.4 -alpine3.20 AS build
5
5
6
6
RUN apk -U upgrade && apk add --no-cache gcompat git postgresql-client build-base libpq-dev tzdata yaml-dev \
7
7
&& rm -rf /var/cache/apk/*
@@ -31,7 +31,7 @@ COPY . $RAILS_ROOT/
31
31
32
32
33
33
# ####################################################################
34
- FROM ruby:3.3.8 -alpine3.20 AS final
34
+ FROM ruby:3.4.4 -alpine3.20 AS final
35
35
36
36
RUN apk -U upgrade && apk add --no-cache gcompat git postgresql-client tzdata \
37
37
&& rm -rf /var/cache/apk/*
Original file line number Diff line number Diff line change 3
3
source 'https://rubygems.org'
4
4
git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
5
5
6
- ruby '~> 3.3.8 '
6
+ ruby '~> 3.4.4 '
7
7
8
8
# Gems that have trouble with native packages on alpine.
9
9
gem 'google-protobuf' , force_ruby_platform : true
Original file line number Diff line number Diff line change 589
589
simplecov (~> 0.19 )
590
590
simplecov-html (0.13.1 )
591
591
simplecov_json_formatter (0.1.4 )
592
- sorbet-runtime (0.5.12196 )
592
+ sorbet-runtime (0.5.12200 )
593
593
sprockets (4.2.2 )
594
594
concurrent-ruby (~> 1.0 )
595
595
logger
@@ -665,7 +665,7 @@ DEPENDENCIES
665
665
sprockets-rails
666
666
667
667
RUBY VERSION
668
- ruby 3.3.8p144
668
+ ruby 3.4.4p34
669
669
670
670
BUNDLED WITH
671
671
2.3.26
You can’t perform that action at this time.
0 commit comments