Skip to content

[Snyk] Fix for 5 vulnerabilities #35

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
fix: Gemfile to reduce vulnerabilities
  • Loading branch information
snyk-bot committed Nov 15, 2023
commit e17c1b91101bbf6ddde0c475d4a0affe0aee36a6
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source 'https://rubygems.org'
ruby '2.4.3'

gem 'faraday'
gem 'html-proofer', '~> 3.0'
gem 'html-proofer', '~> 3.10', '>= 3.10.0'
gem 'jekyll', '>=3.1.6'
gem 'jekyll-paginate'
gem 'jekyll-redirect-from'
Expand All @@ -18,16 +18,16 @@ gem 'rubocop', group: :test

# All of this is for Slate / middleman

gem "middleman"
gem "middleman", ">= 4.0.0"

# For syntax highlighting
gem "middleman-syntax"
gem "middleman-syntax", ">= 3.2.0"

# Plugin for middleman to generate GitHub pages
gem 'middleman-gh-pages'

# Live-reloading plugin
gem "middleman-livereload", "~> 3.3.0"
gem "middleman-livereload", "~> 3.4.1"

gem 'redcarpet'

Expand Down