Updating Jekyll to 3.6 - everything fails

What does your Gemfile contain?
if it says,

gem "jekyll", "3.5.2"

then simply change it into:

gem "jekyll", "~> 3.6"

This will force Ruby to use Jekyll 3.6.0 at the same time allow you to use future versions…
Then simply run

$ bundle update