Skip to content

Commit

Permalink
fix: upgrade Ruby to 3.2.4 to address CVE (#16521)
Browse files Browse the repository at this point in the history
* fix: upgrade Ruby to 3.2.4 to address CVE

* Update workflows for new ruby
  • Loading branch information
ericboehs committed Apr 26, 2024
1 parent 1fdcc61 commit 4dfb07e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_checks.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@22fdc77bf4148f810455b226c90fb81b5cbc00a7
- uses: ruby/setup-ruby@1198b074305f9356bd56dd4b311757cc0dab2f1c
with:
bundler-cache: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/income-limits-data-sync.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
income_limits_data_sync:
runs-on: self-hosted
container:
image: public.ecr.aws/docker/library/ruby:3.2.2-bullseye
image: public.ecr.aws/docker/library/ruby:3.2.4-bullseye
env:
SSL_CERT_FILE: /etc/ssl/certs/ca-certificates.crt
NODE_EXTRA_CA_CERTS: /etc/ssl/certs/ca-certificates.crt
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
3.2.3
3.2.4
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM ruby:3.2.3-slim-bookworm as rubyimg
FROM ruby:3.2.4-slim-bookworm as rubyimg

# XXX: using stretch here for pdftk dep, which is not availible after
# stretch (or in alpine) and is switched automatically to pdftk-java in buster
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-k8s
@@ -1,4 +1,4 @@
FROM ruby:3.2.3-slim-bullseye AS rubyimg
FROM ruby:3.2.4-slim-bullseye AS rubyimg
FROM rubyimg AS modules

WORKDIR /tmp
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

ruby '~> 3.2.3'
ruby '~> 3.2.4'

# Modules
path 'modules' do
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -1280,7 +1280,7 @@ DEPENDENCIES
yard

RUBY VERSION
ruby 3.2.3p157
ruby 3.2.4p170

BUNDLED WITH
2.4.9
2 changes: 1 addition & 1 deletion docs/setup/native.md
Expand Up @@ -2,7 +2,7 @@

Vets API requires:

- Ruby 3.2.3
- Ruby 3.2.4
- PostgreSQL 15.x (including PostGIS 3)
- Redis 6.2.x

Expand Down

0 comments on commit 4dfb07e

Please sign in to comment.