I got a dependabot alert on one of my personal projects on Github, asking me to Upgrade activesupport to version 6.0.3.1 or later.
It has suggested that I do something like gem "activesupport", ">= 6.0.3.1"
. My question is, do I directly update my Gemfile.lock
? Or do I add this line to my Gemfile
and let bundler
update the Gemfile.lock
?
One reason I am confused is that my Gemfile
currently has no reference to activesupport
, so I'm not sure if I should add that line to the Gemfile
at all.