Skip to content

Commit

Permalink
Update to Ruby 3.4.1
Browse files Browse the repository at this point in the history
changelog: Internal, Maintenance, Update to Ruby 3.4.1
  • Loading branch information
mitchellhenke committed Feb 7, 2025
1 parent aa462e3 commit 832e52c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ variables:
FF_SCRIPT_SECTIONS: 'true'
JUNIT_OUTPUT: 'true'
ECR_REGISTRY: '${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_REGION}.amazonaws.com'
IDP_CI_SHA: 'sha256:37766e5b4aaeaad72dc8d18aa73236558ae5abd478073f5005783c44d6d6e87e'
IDP_CI_SHA: 'sha256:96e9cfbcedcc8d2c6736d736ebc6462bbd2fed3250f513facb632f6f87c0c862'
PKI_IMAGE_TAG: 'main'
DASHBOARD_IMAGE_TAG: 'main'
APPLICATION_MANIFEST: dockerfiles/application.yaml
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ AllCops:
- 'tmp/**/*'
- 'vendor/**/*'
- 'public/**/*'
TargetRubyVersion: 3.3.0
TargetRubyVersion: 3.4.0
TargetRailsVersion: 8.0
UseCache: true
DisabledByDefault: true
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.6
3.4.1
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ group :development, :test do
gem 'knapsack'
gem 'listen'
gem 'net-http-persistent', '~> 4.0.2', require: false
gem 'nokogiri', '~> 1.16.0'
gem 'nokogiri', '~> 1.18.0'
gem 'pg_query', require: false
gem 'pry-byebug'
gem 'pry-doc'
Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ GEM
net-ssh (6.1.0)
newrelic_rpm (9.7.0)
nio4r (2.7.4)
nokogiri (1.16.8)
nokogiri (1.18.2)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
numbers_and_words (0.11.12)
Expand Down Expand Up @@ -506,7 +506,7 @@ GEM
yard (~> 0.9.11)
pry-rails (0.3.11)
pry (>= 0.13.0)
psych (5.2.1)
psych (5.2.3)
date
stringio
public_suffix (6.0.1)
Expand Down Expand Up @@ -820,7 +820,7 @@ DEPENDENCIES
net-http-persistent (~> 4.0.2)
net-sftp
newrelic_rpm (~> 9.0)
nokogiri (~> 1.16.0)
nokogiri (~> 1.18.0)
numbers_and_words (~> 0.11.12)
pg
pg_query
Expand Down Expand Up @@ -888,7 +888,7 @@ DEPENDENCIES
zxcvbn (= 0.1.12)

RUBY VERSION
ruby 3.3.6p108
ruby 3.4.1p0

BUNDLED WITH
2.5.23
2.6.3
2 changes: 1 addition & 1 deletion dockerfiles/idp_ci.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/ruby:3.3.6-bullseye
FROM public.ecr.aws/docker/library/ruby:3.4.1-bullseye

ENV NODE_MAJOR 22

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/idp_deploy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# avoid having build-essential and the large-files token be in the
# main image.
#########################################################################
FROM public.ecr.aws/docker/library/ruby:3.3.6-slim as builder
FROM public.ecr.aws/docker/library/ruby:3.4.1-slim as builder

# Set environment variables
ENV RAILS_ROOT /app
Expand Down Expand Up @@ -140,7 +140,7 @@ RUN openssl req -x509 -sha256 -nodes -newkey rsa:2048 -days 1825 \
#########################################################################
# This is the main image.
#########################################################################
FROM public.ecr.aws/docker/library/ruby:3.3.6-slim as main
FROM public.ecr.aws/docker/library/ruby:3.4.1-slim as main

# Set environment variables
ENV RAILS_ROOT /app
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/idp_review_app.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.6-slim
FROM ruby:3.4.1-slim

# Set environment variables
ENV RAILS_ROOT /app
Expand Down

0 comments on commit 832e52c

Please sign in to comment.