Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:0cea6ebf8fa4d693177f46ae9a8c24e6030245f3c795753269b7910178d5cfdd'
IDP_CI_SHA: 'sha256:5c4953f8efba18b7a6d6a9a961cb77ba7143059cbb2176499432b4275fbe67db'
PKI_IMAGE_TAG: 'main'
DASHBOARD_IMAGE_TAG: 'main'

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1
3.3.4
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a Rubocop parser we can update too? It prints a little warning when the patch version is different

6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ GEM
openssl (> 2.0, < 3.1)
orm_adapter (0.5.0)
parallel (1.25.1)
parser (3.3.3.0)
parser (3.3.4.2)
ast (~> 2.4.1)
racc
pg (1.5.6)
Expand Down Expand Up @@ -500,7 +500,7 @@ GEM
puma (6.4.2)
nio4r (~> 2.0)
raabro (1.4.0)
racc (1.8.0)
racc (1.8.1)
rack (3.0.11)
rack-cors (2.0.2)
rack (>= 2.0.0)
Expand Down Expand Up @@ -876,7 +876,7 @@ DEPENDENCIES
zxcvbn (= 0.1.9)

RUBY VERSION
ruby 3.3.1p55
ruby 3.3.4p94

BUNDLED WITH
2.5.6
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.1-bullseye
FROM public.ecr.aws/docker/library/ruby:3.3.4-bullseye

ENV NODE_MAJOR 20

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/idp_prod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# avoid having build-essential and the large-files token be in the
# main image.
#########################################################################
FROM ruby:3.3.1-slim as builder
FROM ruby:3.3.4-slim as builder

# Set environment variables
ENV RAILS_ROOT /app
Expand Down Expand Up @@ -136,7 +136,7 @@ RUN openssl req -x509 -sha256 -nodes -newkey rsa:2048 -days 1825 \
#########################################################################
# This is the main image.
#########################################################################
FROM ruby:3.3.1-slim
FROM ruby:3.3.4-slim

# 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.1-slim
FROM ruby:3.3.4-slim

# Set environment variables
ENV RAILS_ROOT /app
Expand Down