Improvement

September 23, 20201 minute read

Dependabot supports vendoring for Ruby/bundler

Dependabot can now update repositories that use RubyGems, use bundler, and vendor their gems by committing the vendor/cache folder to the repo. In your Dependabot configuration file, add a vendor: true option:

yaml
version: 2
updates:
  - package-ecosystem: "bundler"
    directory: "/"
    schedule:
      interval: "daily"
    vendor: true

If you'd like Dependabot to support vendored packages from other package ecosystems, vote for the corresponding feature request on the dependabot/dependabot-core repository.

Subscribe to our developer newsletter

Discover tips, technical guides, and best practices in our biweekly newsletter just for devs.

By submitting, I agree to let GitHub and its affiliates use my information for personalized communications, targeted advertising, and campaign effectiveness. See the GitHub Privacy Statement for more details.

Dependabot supports vendoring for Ruby/bundler - GitHub Changelog