From cc7df27d7dbd4096a1f7eab81cf7422b7e272463 Mon Sep 17 00:00:00 2001
From: snyk-bot <snyk-bot@snyk.io>
Date: Fri, 2 Aug 2024 08:15:34 +0000
Subject: [PATCH] fix: Gemfile to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-RUBY-REXML-7577227
- https://snyk.io/vuln/SNYK-RUBY-REXML-7577228
---
 Gemfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Gemfile b/Gemfile
index 563bad2..51a7ffc 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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"
@@ -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
@@ -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