Skip to content

Commit

Permalink
Bump ruby 3.3.6 to 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jsugarman committed Dec 30, 2024
1 parent 0c5d8f4 commit 88568d9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ executors:
- image: cimg/base:2020.01
linting-executor:
docker:
- image: cimg/ruby:3.3.6-browsers
- image: cimg/ruby:3.4.1-browsers
environment:
RAILS_ENV: test
TZ: "Europe/London"
Expand All @@ -28,7 +28,7 @@ executors:
resource_class: small
test-executor:
docker:
- image: ministryofjustice/apply-ci:latest-3.3.6
- image: ministryofjustice/apply-ci:latest-3.4.1
environment:
RAILS_ENV: test
NODE_OPTIONS: --openssl-legacy-provider
Expand Down Expand Up @@ -94,22 +94,22 @@ references:
restore_gems_cache: &restore_gems_cache
restore_cache:
keys:
- v3.3.6-gems-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "Gemfile.lock" }}
- v3.4.1-gems-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "Gemfile.lock" }}

restore_js_packages_cache: &restore_js_packages_cache
restore_cache:
keys:
- v3.3.6-yarn-packages-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }}
- v3.4.1-yarn-packages-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }}

save_gems_cache: &save_gems_cache
save_cache:
key: v3.3.6-gems-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "Gemfile.lock" }}
key: v3.4.1-gems-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle

save_js_packages_cache: &save_js_packages_cache
save_cache:
key: v3.3.6-yarn-packages-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }}
key: v3.4.1-yarn-packages-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }}
paths:
- node_modules

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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ministryofjustice/apply-base:latest-3.3.6
FROM ministryofjustice/apply-base:latest-3.4.1
LABEL org.opencontainers.image.authors="apply for legal aid team"

# add non-root user and group with alpine first available uid, 1000
Expand Down
11 changes: 8 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ GEM
coderay (1.1.3)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
combine_pdf (1.0.29)
matrix
ruby-rc4 (>= 0.1.5)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
cookiejar (0.3.4)
Expand Down Expand Up @@ -312,8 +315,9 @@ GEM
govuk_notify_rails (3.0.0)
notifications-ruby-client (~> 6.2)
rails (>= 4.1.0)
grover (1.2.1)
nokogiri (~> 1)
grover (0.12.3)
combine_pdf (~> 1.0)
nokogiri (~> 1.0)
guard (2.19.0)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
Expand Down Expand Up @@ -651,6 +655,7 @@ GEM
ruby-graphviz (1.2.5)
rexml
ruby-progressbar (1.13.0)
ruby-rc4 (0.1.5)
ruby-saml (1.17.0)
nokogiri (>= 1.13.10)
rexml
Expand Down Expand Up @@ -860,7 +865,7 @@ DEPENDENCIES
webrick

RUBY VERSION
ruby 3.3.6p108
ruby 3.4.1p0

BUNDLED WITH
2.5.11
2 changes: 1 addition & 1 deletion docker/apply_base.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.6-alpine3.21
FROM ruby:3.4.1-alpine3.21
LABEL org.opencontainers.image.authors="apply for legal aid team"

# fail early and print all commands
Expand Down
2 changes: 1 addition & 1 deletion docker/apply_ci.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cimg/ruby:3.3.6-browsers
FROM cimg/ruby:3.4.1-browsers
LABEL org.opencontainers.image.authors="apply for legal aid team"

RUN wget https://mirrors.kernel.org/ubuntu/pool/main/libf/libffi/libffi6_3.2.1-8_amd64.deb -O /tmp/libffi6_3.2.1-8_amd64.deb
Expand Down

0 comments on commit 88568d9

Please sign in to comment.