Skip to main content
Skip table of contents

Dependabot

Dependabot is an automated dependency management tool. It uses a configuration file, dependabot.yml, that lives at the root of each repository to handle the dependencies for that repo.

dependabot.yml file located inside the .github folder

CODE
version: 2
updates:
  - package-ecosystem: "npm"
    directory: "/"
    schedule:
      interval: "daily"
      time: "09:00"
      timezone: "America/New_York"
      # Allow up to 10 open pull requests for npm dependencies
      open-pull-requests-limit: 10

Resources

Settings

  • dependabot will run everyday at 9am EST.

  • dependabot will only create up to 10 pull request at the time.

  • dependabot can be located inside GitHub under the Insights tab > Dependency graph

  • dependabot can be run manually from its settings tab inside GitHub

Procedures

Minor and patch

Any minor or patch upgrades should be prioritized since they won't have major impact. However, even minor library version upgrades can break or insert inconsistencies in apps.

In Minor or patches PRs, you need to still verify that there aren't any breaking changes.

Major

A major version upgrade is often a more conscious decision to upgrade with the understanding that such an upgrade will require some work. Therefore, a ticket should be opened and extended work will be performed.

Failure after a PR is merged

If a dependency upgrade causes an issue not caught by automated testing, the upgrade should be quickly reverted. A new PR should be created manually and a fix will need to be implemented along the upgrade to prevent any further issues.

Since automated tests may not catch all issues be sure to read release notes related to any dependency upgrade.

Recommended practices

  • Maintain your dependencies with a level of frequency that the package count and version gap feels manageable

  • Update your dependencies by areas of concern

  • Test, lint, and run build checks after updating dependencies to look for potential breakage. If a dependency touches a specific piece of functionality conduct some quick smoke tests


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.