Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency ruby to v3.2.6 #443

Open
wants to merge 8 commits into
base: staging
Choose a base branch
from
Open
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 .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:

AllCops:
TargetRailsVersion: 7.0
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
Exclude:
- 'db/schema.rb'
- 'config/initializers/secret_token.rb'
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2
3.2.6
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ruby:3.1.2-alpine@sha256:05b990dbaa3a118f96e9ddbf046f388b3c4953d5ef3d18908af96f42c0e138d9
FROM ruby:3.2.6-alpine@sha256:50ed8e1a21dd60120c24e074a64c7d9867cb1b878392b9080693b7fa533853ef

ARG BUILD_HASH='unknown'
ENV BUILD_HASH=$BUILD_HASH
Expand All @@ -25,4 +25,4 @@
RUN bundle install
ADD . /app

CMD bundle exec puma -C config/puma.rb

Check warning on line 28 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build

JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals

JSONArgsRecommended: JSON arguments recommended for CMD to prevent unintended behavior related to OS signals More info: https://docs.docker.com/go/dockerfile/rule/json-args-recommended/
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ group :development, :test do
gem 'factory_bot_rails'
gem 'faker', '~> 3.5', '>= 3.5.1'
gem 'fuubar'
gem 'pry-byebug', require: false
gem 'pry-rails'
gem 'pry-byebug', '~> 3.9.0', require: false
gem 'pry-rails', '~> 0.3.11'
gem 'rack-mini-profiler', require: false
gem 'rb-readline', require: false
end
Expand Down
13 changes: 5 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,7 @@ GEM
ruby2_keywords (>= 0.0.4)
faraday-net_http (2.0.1)
fastimage (2.2.6)
ffi (1.15.5)
ffi (1.15.5-java)
ffi (1.15.5-x64-mingw32)
ffi (1.15.5-x86-mingw32)
ffi (1.17.1)
ffi-compiler (1.3.2)
ffi (>= 1.15.5)
rake
Expand Down Expand Up @@ -312,8 +309,8 @@ GEM
pry-byebug (3.9.0)
byebug (~> 11.0)
pry (~> 0.13.0)
pry-rails (0.3.9)
pry (>= 0.10.4)
pry-rails (0.3.11)
pry (>= 0.13.0)
public_suffix (4.0.7)
puma (6.5.0)
nio4r (~> 2.0)
Expand Down Expand Up @@ -577,8 +574,8 @@ DEPENDENCIES
paranoia (~> 3.0)
pg (~> 1.5, >= 1.5.9)
phonelib
pry-byebug
pry-rails
pry-byebug (~> 3.9.0)
pry-rails (~> 0.3.11)
puma (~> 6.5)
pundit (~> 2.4)
rack-attack (~> 6.7)
Expand Down
Loading