From 18e39f845d5e720294e847c467655dcf0fa759e4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 3 Aug 2026 10:18:01 +0000 Subject: [PATCH] fix: Gemfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-NOKOGIRI-10674184 - https://snyk.io/vuln/SNYK-RUBY-RACK-13378930 - https://snyk.io/vuln/SNYK-RUBY-RACK-15878260 - https://snyk.io/vuln/SNYK-RUBY-FARADAY-17400242 --- Gemfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 83b7b2811fbd5..550fb7feaeba8 100644 --- a/Gemfile +++ b/Gemfile @@ -20,7 +20,7 @@ group :development do # Replaces the old lib/debug.rb and provides more features. gem 'debug', '>= 1.0.0' # module documentation - gem 'octokit' + gem 'octokit', '>= 5.0.0' # memory profiling gem 'memory_profiler' # cpu profiling @@ -35,7 +35,7 @@ group :development, :test do gem 'rake' # Define `rake spec`. Must be in development AND test so that its available by default as a rake test when the # environment is development - gem 'rspec-rails' + gem 'rspec-rails', '>= 7.0.2' gem 'rspec-rerun' # Required during CI as well local development gem 'rubocop' @@ -44,7 +44,7 @@ end group :test do # automatically include factories from spec/factories gem 'test-prof' - gem 'factory_bot_rails' + gem 'factory_bot_rails', '>= 6.5.0' # Make rspec output shorter and more useful gem 'fivemat' # rspec formatter for acceptance tests