diff --git a/.ruby-version b/.ruby-version index e4604e3..be94e6f 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.2.1 +3.2.2 diff --git a/Dockerfile b/Dockerfile index 1ea6637..5d18427 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ruby:3.2.1-slim +FROM ruby:3.2.2-slim # OS Level Dependencies RUN apt-get update -qq && apt-get install -yq --no-install-recommends \ diff --git a/Gemfile b/Gemfile index fb566ae..81f5347 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } -ruby "3.2.1" +ruby "3.2.2" # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" gem "rails", "~> 7.0.4" diff --git a/Gemfile.lock b/Gemfile.lock index 9225857..bf4571a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -189,7 +189,7 @@ GEM rake (13.0.6) redis (5.0.6) redis-client (>= 0.9.0) - redis-client (0.14.0) + redis-client (0.14.1) connection_pool regexp_parser (2.7.0) reline (0.3.3) @@ -200,7 +200,7 @@ GEM rspec-expectations (3.12.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-mocks (3.12.4) + rspec-mocks (3.12.5) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-rails (6.0.1) @@ -310,7 +310,7 @@ DEPENDENCIES webdrivers RUBY VERSION - ruby 3.2.1p31 + ruby 3.2.2p53 BUNDLED WITH 2.4.9 diff --git a/production.Dockerfile b/production.Dockerfile index f952b05..50c077f 100644 --- a/production.Dockerfile +++ b/production.Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ruby:3.2.1-slim as base +FROM ruby:3.2.2-slim as base WORKDIR /rails