diff --git a/Dockerfile b/Dockerfile index 169a5e9796f..79e449ce67a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -78,7 +78,7 @@ RUN apt-add-repository ppa:brightbox/ruby-ng \ && apt-get install -y --no-install-recommends ruby2.7 ruby2.7-dev \ && gem update --system 3.2.20 \ && gem install bundler -v 1.17.3 --no-document \ - && gem install bundler -v 2.3.9 --no-document \ + && gem install bundler -v 2.3.10 --no-document \ && rm -rf /var/lib/gems/2.7.0/cache/* \ && rm -rf /var/lib/apt/lists/* diff --git a/bundler/helpers/v2/build b/bundler/helpers/v2/build index b8d2267d024..c54f29b8e66 100755 --- a/bundler/helpers/v2/build +++ b/bundler/helpers/v2/build @@ -22,6 +22,6 @@ cd "$install_dir" # NOTE: Sets `BUNDLED WITH` to match the installed v2 version in Gemfile.lock # forcing specs and native helpers to run with the same version -BUNDLER_VERSION=2.3.9 bundle config --local path ".bundle" -BUNDLER_VERSION=2.3.9 bundle config --local without "test" -BUNDLER_VERSION=2.3.9 bundle install +BUNDLER_VERSION=2.3.10 bundle config --local path ".bundle" +BUNDLER_VERSION=2.3.10 bundle config --local without "test" +BUNDLER_VERSION=2.3.10 bundle install diff --git a/bundler/lib/dependabot/bundler/helpers.rb b/bundler/lib/dependabot/bundler/helpers.rb index 455bf43f7c9..2c9d21d0cbc 100644 --- a/bundler/lib/dependabot/bundler/helpers.rb +++ b/bundler/lib/dependabot/bundler/helpers.rb @@ -4,7 +4,7 @@ module Dependabot module Bundler module Helpers V1 = "1.17.3" - V2 = "2.3.9" + V2 = "2.3.10" # If we are updating a project with no Gemfile.lock, we default to the # newest version we support DEFAULT = V2 diff --git a/bundler/script/ci-test b/bundler/script/ci-test index d1fc09fcdb0..b1c953522a7 100755 --- a/bundler/script/ci-test +++ b/bundler/script/ci-test @@ -15,7 +15,7 @@ fi if [[ "$SUITE_NAME" == "bundler2" ]]; then cd helpers/v2 \ - && BUNDLER_VERSION=2.3.9 bundle install \ - && BUNDLER_VERSION=2.3.9 bundle exec rspec spec \ + && BUNDLER_VERSION=2.3.10 bundle install \ + && BUNDLER_VERSION=2.3.10 bundle exec rspec spec \ && cd - fi diff --git a/bundler/spec/dependabot/bundler/helper_spec.rb b/bundler/spec/dependabot/bundler/helper_spec.rb index 6712715cb3c..9e8b4d03ab6 100644 --- a/bundler/spec/dependabot/bundler/helper_spec.rb +++ b/bundler/spec/dependabot/bundler/helper_spec.rb @@ -41,7 +41,7 @@ end let(:v1) { "1.17.3" } - let(:v2) { "2.3.9" } + let(:v2) { "2.3.10" } describe "#bundler_version" do def described_method(lockfile) diff --git a/bundler/spec/spec_helper.rb b/bundler/spec/spec_helper.rb index 548f343e4ec..ecf39911cd1 100644 --- a/bundler/spec/spec_helper.rb +++ b/bundler/spec/spec_helper.rb @@ -20,7 +20,7 @@ def self.use_bundler_2? end def self.bundler_version - use_bundler_2? ? "2.3.9" : "1.17.3" + use_bundler_2? ? "2.3.10" : "1.17.3" end def self.bundler_major_version