Skip to content

Commit

Permalink
fix: Gemfile to reduce vulnerabilities
Browse files Browse the repository at this point in the history
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-RUBY-REXML-6861566
  • Loading branch information
snyk-bot committed May 17, 2024
1 parent 2a7b143 commit 937da95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "2.7.8"
gem "rubocop"
gem "rubocop", ">= 1.57.0"
gem "slack-ruby-bot", "~> 0.16.1"
gem "async-websocket", "~> 0.8.0"
gem "bootstrap", "~> 4.5.0"
Expand Down Expand Up @@ -53,7 +53,7 @@ gem "bootsnap", ">= 1.1.0", require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "standard", require: false
gem "standard", ">= 1.31.2", require: false
end

group :development do
Expand All @@ -68,7 +68,7 @@ end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 3.37.1"
gem "selenium-webdriver"
gem "selenium-webdriver", ">= 4.9.1"
# Easy installation and use of chromedriver to run system tests with Chrome
gem "chromedriver-helper", ">= 2.1.1"
end
Expand Down

0 comments on commit 937da95

Please sign in to comment.