Skip to content

Latest commit

 

History

History
695 lines (466 loc) · 41 KB

dependabot-options-reference.md

File metadata and controls

695 lines (466 loc) · 41 KB
title intro permissions allowTitleToDifferFromFilename redirect_from versions type topics shortTitle
Dependabot options reference
Detailed information for all the options you can use to customize how {% data variables.product.prodname_dependabot %} maintains your repositories.
{% data reusables.permissions.dependabot-yml-configure %}
true
/github/administering-a-repository/configuration-options-for-dependency-updates
/code-security/supply-chain-security/configuration-options-for-dependency-updates
/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
fpt ghec ghes
*
*
*
reference
Dependabot
Version updates
Repositories
Dependencies
Pull requests
Dependabot options reference

About the dependabot.yml file

The dependabot.yml file defines how {% data variables.product.prodname_dependabot %} maintains dependencies using version updates. In addition, all options marked with a {% octicon "shield-check" aria-label="Security updates" height="16" %} icon also change how {% data variables.product.prodname_dependabot %} creates pull requests for security updates, except where target-branch is used.

The {% data variables.product.prodname_dependabot %} configuration file, dependabot.yml, uses YAML syntax. If you're new to YAML and want to learn more, see Learn YAML in five minutes.

You must store this file in the .github directory of your repository in the default branch. When you add or update the dependabot.yml file, this triggers an immediate check for version updates. For more information and an example, see AUTOTITLE.

Note

{% data variables.product.prodname_dependabot_alerts %} are configured in the repository or organization "Settings" tab and not in the dependabot.yml file, see AUTOTITLE.

Required keys

Key Location Purpose
version Top level {% data variables.product.prodname_dependabot %} configuration syntax to use. Always: 2.
updates Top level Section where you define each package-ecosystem to update.
package-ecosystem Under updates Define a package manager to update.
{% ifversion dependabot-updates-multidirectory-support %}directories or directory{% else %}directory{% endif %} Under each package-ecosystem entry Define the location of the manifest or other definition files to update.
schedule.interval Under each package-ecosystem entry Define whether to look for version updates: daily, weekly, or monthly.

Optionally, you can also include a top-level registries key to define access details for private registries, see Top-level registries key.

# Basic `dependabot.yml` file with
# minimum configuration for two package managers

version: 2
updates:
  # Enable version updates for npm
  - package-ecosystem: "npm"
    # Look for `package.json` and `lock` files in the `root` directory
    directory: "/"
    # Check the npm registry for updates every day (weekdays)
    schedule:
      interval: "daily"

  # Enable version updates for Docker
  - package-ecosystem: "docker"
    # Look for a `Dockerfile` in the `root` directory
    directory: "/"
    # Check for updates once a week
    schedule:
      interval: "weekly"

For a real-world example of a dependabot.yml file, see {% data variables.product.prodname_dependabot %}'s own configuration file.

allow {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Use to define exactly which dependencies to maintain for a package ecosystem. Often used with the ignore option. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • {% octicon "versions" aria-hidden="true" %} All dependencies explicitly defined in a manifest are kept up to date by version updates.
  • {% octicon "shield-check" aria-hidden="true" %} All dependencies defined in lock files with vulnerable dependencies are updated by security updates.

When allow is specified {% data variables.product.prodname_dependabot %} uses the following process:

  1. Check for all explicitly allowed dependencies.

  2. Then filter out any ignored dependencies or versions.

    If a dependency is matched by an allow and an ignore statement, then it is ignored.

Parameters Purpose
dependency-name Allow updates for dependencies with matching names, optionally using * to match zero or more characters.
dependency-type Allow updates for dependencies of specific types.

dependency-name (allow)

For most package managers, you should define a value that will match the dependency name specified in the lock or manifest file. A few systems have more complex requirements.

Package manager Format required Example
Gradle and Maven groupId:artifactId org.kohsuke:github-api
Docker for image tags The full name of the repository For an image tag of <account ID>.dkr.ecr.us-west-2.amazonaws.com/base/foo/bar/ruby:3.1.0-focal-jemalloc, use base/foo/bar/ruby.

dependency-type (allow)

Dependency types Supported by package managers Allow updates
direct All All explicitly defined dependencies.
indirect bundler, pip, composer, cargo, gomod Dependencies of direct dependencies (also known as sub-dependencies, or transient dependencies).
all All All explicitly defined dependencies. For bundler, pip, composer, cargo, gomod, also the dependencies of direct dependencies.
production bundler, composer, mix, maven, npm, pip (not all managers) Only to dependencies defined by the package manager as production dependencies.
development bundler, composer, mix, maven, npm, pip (not all managers) Only to dependencies defined by the package manager as development dependencies.

assignees {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Specify individual assignees for all pull requests raised for a package ecosystem. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • Pull requests are created without any assignees.

When assignees is defined:

  • {% octicon "versions" aria-hidden="true" %} All pull requests for version updates are created with the chosen assignees.
  • {% octicon "shield-check" aria-hidden="true" %} All pull requests for security updates are created with the chosen assignees, unless target-branch defines updates to a non-default branch.

Assignees must have write access to the repository. For organization-owned repositories, organization members with read access are also valid assignees.

commit-message {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Define the format for commit messages. Since the titles of pull requests are written based on commit messages, this setting also impacts the titles of pull requests. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • Commit messages follow similar patterns to those detected in the repository.

When commit-message is defined:

  • {% octicon "versions" aria-hidden="true" %} All commit messages follow the defined pattern.
  • {% octicon "shield-check" aria-hidden="true" %} All commit messages follow the defined pattern, unless target-branch defines updates to a non-default branch.
Parameters Purpose
prefix Defines a prefix for all commit messages and pull request titles.
prefix-development On supported systems, defines a different prefix to use for commits that update dependencies in the Development dependency group.
include Follow the commit message prefix with additional information.

{% ifversion dependabot-version-updates-groups %}

Tip

When pull requests are raised for grouped updates, the branch name and pull request title are defined by the group IDENTIFIER, see {% ifversion dependabot-grouped-security-updates-config %}groups{% else %}groups{% endif %}.

{% endif %}

prefix

  • Used for all commit messages unless prefix-development is also defined.
  • Value can be up to 50 characters.
  • {% data variables.product.prodname_dependabot %} inserts a colon after the prefix before adding the main commit message when the value ends with a letter, number, closing parenthesis, or closing bracket.
  • End the value with a whitespace character to stop a colon being added.

prefix-development

Supported by: bundler, composer, mix, maven, npm, and pip.

  • Used only for commit messages that update dependencies in the Development dependency group.
  • Otherwise, the parameter behaves exactly as the prefix parameter.

include

  • Supports only the value scope
  • When defined any prefix is followed by the type of dependencies updated in the commit: deps or deps-dev.

{% ifversion dependabot-updates-multidirectory-support %}directories or {% endif %}directory {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Required option. Use to define the location of the package manifests for each package manager (for example, the package.json or Gemfile). Without this information {% data variables.product.prodname_dependabot %} cannot create pull requests for version updates. For examples, see {% ifversion dependabot-updates-multidirectory-support %}Defining multiple locations for manifest files{% else %}Example dependabot.yml file{% endif %}.

{% ifversion dependabot-updates-multidirectory-support %}

  • Use directory to define a single directory of manifests.
  • Use directories to define a list of multiple directories of manifests.
  • Define directories relative to the root of the repository for most package managers.{% else %}
  • Define the directory relative to the root of the repository for most package managers.{% endif %}
  • For {% data variables.product.prodname_actions %}, use the value /. {% data variables.product.prodname_dependabot %} will search the /.github/workflows directory, as well as the action.yml/action.yaml file from the root directory.

If you need to use more than one block in the configuration file to define updates for a single target branch of an ecosystem, you must ensure that all values are unique and there is no overlap in directories defined.

{% ifversion dependabot-updates-multidirectory-support %}

Note

The directories key supports globbing and the wildcard character *. These features are not supported by the directory key.

{% endif %}

enable-beta-ecosystems {% octicon "versions" aria-label="Version updates only" height="24" %}

Not currently in use.

{% ifversion dependabot-version-updates-groups %}

groups {% ifversion dependabot-grouped-security-updates-config %}{% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}{% else %}{% octicon "versions" aria-label="Version updates only" height="24" %}{% endif %}

Define rules to create one or more sets of dependencies managed by a package manager, to group updates into fewer, targeted pull requests. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • Open a single pull request for each dependency that needs to be updated to a newer version for version updates{% ifversion dependabot-grouped-security-updates-config %} and for security updates{% endif %}.

When groups is used to define rules:

  • All {% ifversion dependabot-grouped-security-updates-config %}{% else %}version {% endif %}updates for dependencies that match a rule are combined in a single pull request.
  • If a dependency matches more than one rule, it's included in the first group that it matches.
  • Any outdated dependencies that do not match a rule are updated in individual pull requests.
Parameters Purpose
IDENTIFIER Define an identifier for the group to use in branch names and pull request titles. This must start and end with a letter, and can contain letters, pipes |, underscores _, or hyphens -.
{% ifversion dependabot-grouped-security-updates-config %}
applies-to Specify which type of update the group applies to. When undefined, defaults to version updates. Supported values: version-updates or security-updates.
{% endif %}
dependency-type Limit the group to a type. Supported values: development or production.
patterns Define one or more patterns to include dependencies with matching names.
exclude-patterns Define one or more patterns to exclude dependencies from the group.
update-types Limit the group to one or more semantic versioning levels. Supported values: minor, patch, and major.

dependency-type (groups)

Supported by: bundler, composer, mix, maven, npm, and pip.

By default, a group will include all types of dependencies.

  • Use development to include only dependencies in the "Development dependency group".
  • Use production to include only dependencies in the "Production dependency group".

patterns and exclude-patterns (groups)

Both options support using * as a wild card to define matches with dependency names. If a dependency matches both a pattern and an exclude-pattern, then it is excluded from the group.

update-types (groups)

By default, a group will include updates for all semantic versions (SemVer). SemVer is an accepted standard for defining versions of software packages, in the form x.y.z. Dependabot assumes that versions in this form are always major.minor.patch.

  • Use patch to include patch releases.
  • Use minor to include minor releases.
  • Use major to include major releases.

For examples, see AUTOTITLE.

{% endif %}

ignore {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Use with the allow option to define exactly which dependencies to maintain for a package ecosystem. {% data variables.product.prodname_dependabot %} checks for all allowed dependencies and then filters out any ignored dependencies or versions. So a dependency that is matched by both an allow and an ignore will be ignored. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • {% octicon "versions" aria-hidden="true" %} All dependencies explicitly defined in a manifest are kept up to date by version updates.
  • {% octicon "shield-check" aria-hidden="true" %} All dependencies defined in lock files with vulnerable dependencies are updated by security updates.

When ignore is used {% data variables.product.prodname_dependabot %} uses the following process:

  1. Check for all explicitly allowed dependencies.

  2. Then filter out any ignored dependencies or versions.

    If a dependency is matched by an allow and an ignore statement, then it is ignored.

Parameters Purpose
dependency-name Ignore updates for dependencies with matching names, optionally using * to match zero or more characters.
versions Ignore specific versions or ranges of versions.
update-types Ignore updates to one or more semantic versioning levels. Supported values: version-update:semver-minor, version-update:semver-patch, and version-update:semver-major.

dependency-name (ignore)

For most package managers, you should define a value that will match the dependency name specified in the lock or manifest file. A few systems have more complex requirements.

Package manager Format required Example
Gradle and Maven groupId:artifactId org.kohsuke:github-api
Docker for image tags The full name of the repository For an image tag of <account ID>.dkr.ecr.us-west-2.amazonaws.com/base/foo/bar/ruby:3.1.0-focal-jemalloc, use base/foo/bar/ruby.

versions (ignore)

Use to ignore specific versions or ranges of versions. If you want to define a range, use the standard pattern for the package manager. For example:

  • npm: use ^1.0.0
  • Bundler: use ~> 2.0
  • Docker: use Ruby version syntax
  • NuGet: use 7.*

For examples, see AUTOTITLE.

update-types (ignore)

Specify which semantic versions (SemVer) to ignore. SemVer is an accepted standard for defining versions of software packages, in the form x.y.z. {% data variables.product.prodname_dependabot %} assumes that versions in this form are always major.minor.patch.

  • Use patch to include patch releases.
  • Use minor to include minor releases.
  • Use major to include major releases.

insecure-external-code-execution {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Supported by: bundler, mix, and pip.

Allow {% data variables.product.prodname_dependabot %} to execute external code in the manifest during updates. For examples, see Allowing external code execution.

{% data variables.product.prodname_dependabot %} default behavior:

  • When you give {% data variables.product.prodname_dependabot %} access to one or more registries, external code execution is automatically disabled to protect your code from compromised packages.
  • Version updates may fail without the ability to execute code.

When you allow insecure-external-code-execution:

  • {% data variables.product.prodname_dependabot %} will execute code in the manifest as part of the version update process.
  • The code has access to only the package managers in the registries associated with that updatessetting. There is no access allowed to any of the registries defined in the top level registries configuration.
  • This should enable the update to succeed but also could allow a compromised package to steal credentials or gain access to configured registries.

Supported value: allow.

labels {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Specify your own labels for all pull requests raised for a package manager. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • All pull requests have a dependencies label.
  • If you define more than one package manager, an additional label for the ecosystem or language is added to each pull request. For example: java for Gradle updates and submodules for git submodule updates.
  • {% data variables.product.prodname_dependabot %} creates these default labels automatically, as necessary in your repository.

When labels is defined:

  • The labels specified are used instead of the default labels.
  • If any of these labels is not defined in the repository, it is ignored.
  • You can disable all labels, including the default labels, using labels: [ ].

{% data reusables.dependabot.option-affects-security-updates %}

milestone {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Associate all pull requests raised for a package manager with a milestone. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • No milestones are used.

When milestone is defined:

  • All pull requests for the package manager are added to the milestone.

Supported value: the numeric identifier of a milestone.

Tip

If you view a milestone, the final part of the page URL, after milestone, is the identifier. For example: https://github.com/<org>/<repo>/milestone/3, see AUTOTITLE.

open-pull-requests-limit {% octicon "versions" aria-label="Version updates only" height="24" %}

Change the limit on the maximum number of pull requests for version updates open at any time.

{% data variables.product.prodname_dependabot %} default behavior:

  • If five pull requests with version updates are open, no further pull requests are raised until some of those open requests are merged or closed.
  • Security updates have a separate, internal limit of ten open pull requests which cannot be changed.

When open-pull-requests-limit is defined:

package-ecosystem {% octicon "versions" aria-label="Version updates only" height="24" %}

Required option. Define one package-ecosystem element for each package manager that you want {% data variables.product.prodname_dependabot %} to monitor for new versions. The repository must also contain a dependency manifest or lock file for each package manager, see Example dependabot.yml file.

Package manager YAML value Supported versions
Bundler bundler {% ifversion ghes < 3.15 %}v1, {% endif %}v2
Cargo cargo v1
Composer composer {% ifversion dependabot-updates-composerv1-closing-down %}v2{% else %}v1, v2{% endif %}
{% ifversion dependabot-version-updates-devcontainer-support %}
Dev containers devcontainers Not applicable
{% endif %}
Docker docker v1
{% ifversion dependabot-dotnet-sdk %}
.NET SDK dotnet-sdk >=.NET Core 3.1
{% endif %}
Hex mix v1
elm-package elm v0.19
git submodule gitsubmodule Not applicable
{% data variables.product.prodname_actions %} github-actions Not applicable
Go modules gomod v1
Gradle gradle Not applicable
Maven maven Not applicable
npm npm v6, v7, v8, v9
NuGet nuget {% ifversion fpt or ghec or ghes > 3.14 %}<=6.12.0{% elsif ghes = 3.14 or ghes = 3.13 %}<= 6.8.0{% elsif ghes = 3.12 %}<= 6.7.0{% else %}<= 4.8{% endif %}
pip pip v21.1.2
pip-compile pip 6.1.0
pipenv pip <= 2021-05-29
pnpm npm v7, v8
v9 (version updates only)
poetry pip v1
pub pub v2
{% ifversion dependabot-updates-swift-support %}
Swift swift v5
{% endif %}
Terraform terraform >= 0.13, <= 1.8.x
yarn npm v1, v2, v3

pull-request-branch-name.separator {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Specify a separator to use when generating branch names. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • Generate branch names of the form: dependabot/PACKAGE_MANAGER/DEPENDENCY

When pull-request-branch-name.separator is defined:

  • Use the specified character in place of /.

Supported values: "-", _, /

Tip

The hyphen symbol must be escaped so it is not interpreted as starting an empty YAML list.

rebase-strategy {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Disable automatic rebasing of pull requests raised by {% data variables.product.prodname_dependabot %}.

{% data variables.product.prodname_dependabot %} default behavior is to rebase open pull requests when {% data variables.product.prodname_dependabot %} detects any changes to a version or security update pull request. {% data variables.product.prodname_dependabot %} checks for changes when:

  • Your schedule runs to check for version updates.
  • You reopen a closed {% data variables.product.prodname_dependabot %} pull request.
  • You change the value of target-branch in the {% data variables.product.prodname_dependabot %} configuration file, see target-branch.
  • A {% data variables.product.prodname_dependabot %} pull request is in conflict after a recent push to the target branch.

When rebase-strategy is set to disabled, {% data variables.product.prodname_dependabot %} stops rebasing pull requests.

Note

Pull requests that were open before you disable rebasing will continue to be rebased until 30 days after they were opened. This affects all pull requests that have conflicts with the target branch and all pull requests for version updates.

registries {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Configure access to private package registries to allow {% data variables.product.prodname_dependabot %} to update a wider range of dependencies, see AUTOTITLE and AUTOTITLE.

There are 2 locations in the dependabot.yml file where you can use the registries key:

  1. At the top level, where you define the private registries you want to use and their access information, see AUTOTITLE.
  2. Within the updates blocks, where you can specify which private registries each package manager should use.

{% data variables.product.prodname_dependabot %} default behavior is to raise pull requests only to update dependencies stored in publicly accessible registries.

When the {% data variables.product.prodname_dependabot %} configuration file has a top-level registries section, defining access to one or more private registries, you can configure each package-ecosystem to use one or more of these private registries.

When registries is defined for a package manager:

  • Each private registry specified for a package manager is checked for version and security updates.
  • {% data variables.product.prodname_dependabot %} uses the access details defined in the top-level registries section.

Supported values: REGISTRY_NAME or "*"

reviewers {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Specify individual reviewers, or teams of reviewers, for all pull requests raised for a package manager. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • Pull requests are created without any reviewers assigned.

When reviewers is defined:

  • {% octicon "versions" aria-hidden="true" %} All pull requests for version updates are created with the chosen reviewers.
  • {% octicon "shield-check" aria-hidden="true" %} All pull requests for security updates are created with the chosen reviewers, unless target-branch defines updates to a non-default branch.

Reviewers must have at least read access to the repository.

schedule {% octicon "versions" aria-label="Version updates only" height="24" %}

Required option. Define how often to check for new versions for each package manager you configure using the interval parameter. Optionally, for daily and weekly intervals, you can customize when {% data variables.product.prodname_dependabot %} checks for updates. {% ifversion dependabot-version-updates-groups %}For examples, see AUTOTITLE.{% endif %}

Parameters Purpose
interval Required. Defines the frequency for {% data variables.product.prodname_dependabot %}.
day Specify the day to run for a weekly interval.
time Specify the time to run.
timezone Specify the timezone of the time value.

interval

Supported values: daily, weekly, or monthly

Each package manager must define a schedule interval.

  • Use daily to run on every weekday, Monday to Friday.
  • Use weekly to run once a week, by default on Monday.
  • Use monthly to run on the first day of each month.

By default, {% data variables.product.prodname_dependabot %} randomly assigns a time to apply all the updates in the configuration file. You can use the time and timezone parameters to set a specific runtime for all intervals.

day

Supported values: monday, tuesday, wednesday, thursday, friday, saturday, or sunday

Optionally, run weekly updates for a package manager on a specific day of the week.

time

Format: hh:mm

Optionally, run all updates for a package manager at a specific time of day. By default, times are interpreted as UTC.

timezone

Specify a time zone for the time value.

The time zone identifier must match a timezone in the database maintained by iana, see List of tz database time zones.

target-branch {% octicon "versions" aria-label="Version updates only" height="24" %}

Define a specific branch to check for version updates and to target pull requests for version updates against. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • {% data variables.product.prodname_dependabot %} uses the default branch for the repository, see About the default branch.

When target-branch is defined:

  • Only manifest files on the target branch are checked for version updates.
  • All pull requests for version updates are opened targetting the specified branch.
  • Options defined for this package-ecosystem no longer apply to security updates because security updates always use the default branch for the repository.

vendor {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Supported by: bundler and gomod only.

Tell {% data variables.product.prodname_dependabot %} to maintain your vendored dependencies as well as the dependencies defined by manifest files. A dependency is described as "vendored" or "cached" when you store the code within your repository, see bundle cache documentation and go mod vendor documentation.

For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • Maintain only dependencies recorded in the manifest and lock files identified for Bundler.
  • Raise security and version update pull requests that update the version numbers recorded in the manifest and lock files.
  • For Go modules, any vendored dependencies are automatically identified and maintained as if vendor was enabled.

When vendor is enabled:

  • {% data variables.product.prodname_dependabot %} also maintains dependencies for Bundler that are stored in the _vendor/cache_ directory in the repository.
  • Pull requests will sometimes contain updates to a dependency that is stored in the repository.

Supported values: true or false

versioning-strategy {% octicon "versions" aria-label="Version updates" height="24" %} {% octicon "shield-check" aria-label="Security updates" height="24" %}

Supported by: bundler, cargo, composer, mix, npm, pip, pub

Define how {% data variables.product.prodname_dependabot %} should edit manifest files. For examples, see AUTOTITLE.

{% data variables.product.prodname_dependabot %} default behavior:

  • Try to differentiate between app and library dependencies.
  • For apps, always increase the minimum version requirement to match the new version. The increase strategy.
  • For libraries, widen the allowed version requirements to include both the new and old versions, when possible. The widen strategy.

When versioning-strategy is defined, {% data variables.product.prodname_dependabot %} uses the strategy specified.

Value Behavior
auto Default behavior.
increase Always increase the minimum version requirement to match the new version. If a range already exists, typically this only increases the lower bound.
increase-if-necessary Leave the constraint if the original constraint allows the new version, otherwise, bump the constraint.
lockfile-only Only create pull requests to update lockfiles. Ignore any new versions that would require package manifest changes.
widen Widen the allowed version requirements to include both the new and old versions, when possible. Typically, this only increases the maximum allowed version requirement.

For example, if the current version is 1.0.0 and the current constraint is ^1.0.0 the different strategies would raise the following updates:

New version 1.2.0

  • increase: new constraint ^1.2.0
  • increase-if-necessary: new constraint ^1.0.0
  • widen: new constraint ^1.0.0

New version 2.0.0

  • increase: new constraint ^2.0.0
  • increase-if-necessary: new constraint ^2.0.0
  • widen: new constraint >=1.0.0 <3.0.0

Note

If the package manager you use does not yet support configuring the versioning-strategy parameter, or does not support a value you need. The strategy code is open source, so if you'd like a particular ecosystem to support a new strategy, you are always welcome to submit a pull request in https://github.com/dependabot/dependabot-core/.

{% ifversion dependabot-updates-supported-versioning-tags %}

Versioning tags

  • Represent stages in the software release lifecycle, such as alpha, beta, and stable versions.
  • Allow publishers to distribute their packages more effectively.
  • Indicate the stability of a version and communicate what users should expect in terms of features and stability.

{% data reusables.dependabot.dependabot-updates-supported-versioning-tags %}

Versioning tag glossary

  • alpha: Early version, may be unstable and have incomplete features.
  • beta: More stable than alpha but may still have bugs.
  • canary: Regularly updated pre-release version for testing.
  • dev: Represents development versions.
  • experimental: Versions with experimental features.
  • latest: The latest stable release.
  • legacy: Older or deprecated versions.
  • next: Upcoming release version.
  • nightly: Versions built nightly; often includes the latest changes.
  • rc: Release candidate, close to stable release.
  • release: The official release version.
  • stable: The most reliable, production-ready version.

{% endif %}

Top-level registries key

Specify authentication details that {% data variables.product.prodname_dependabot %} can use to access private package registries, including registries hosted by GitLab or Bitbucket.

{% ifversion ghes %}

Note

Private registries behind firewalls on private networks are supported for the following ecosystems:

  • Bundler{% ifversion dependabot-updates-cargo-private-registry-support %}
  • Cargo{% endif %}
  • Docker
  • Gradle
  • Maven
  • Npm
  • NuGet{% ifversion dependabot-updates-pub-private-registry %}
  • Pub{% endif %}
  • Python
  • Yarn

{% endif %}

The value of the registries key is an associative array, each element of which consists of a key that identifies a particular registry and a value which is an associative array that specifies the settings required to access that registry. The following dependabot.yml file configures a registry identified as dockerhub in the registries section of the file and then references this in the updates section of the file.

{% raw %}

# Minimal settings to update dependencies stored in one private registry

version: 2
registries:
  dockerhub: # Define access for a private registry
    type: docker-registry
    url: registry.hub.docker.com
    username: octocat
    password: ${{secrets.DOCKERHUB_PASSWORD}}
updates:
  - package-ecosystem: "docker"
    directory: "/docker-registry/dockerhub"
    registries:
      - dockerhub # Allow version updates for dependencies in this registry
    schedule:
      interval: "monthly"

{% endraw %}

{% data reusables.dependabot.dependabot-updates-registries-options %}

{% data reusables.dependabot.advanced-private-registry-config-link %}

type and authentication details

The parameters used to provide authentication details for access to a private registry vary according to the registry type.

Registry type Required authentication parameters
{% ifversion dependabot-updates-cargo-private-registry-support %}
cargo-registry token
{% endif %}
composer-repository username and password
docker-registry username and password
git username and password
hex-organization organization and key
hex-repository repo and auth-key optionally with the corresponding public-key-fingerprint
maven-repository username and password
npm-registry username and password
or token
nuget-feed username and password
or token
pub-registry token
python-index username and password
or token
rubygems-server username and password
or token
terraform-registry token

All sensitive data used for authentication should be stored securely and referenced from that secure location, see AUTOTITLE.

Tip

{% data reusables.dependabot.password-definition %}

url and replaces-base

The url parameter defines where to access a registry. When the optional replaces-base parameter is enabled (true), {% data variables.product.prodname_dependabot %} resolves dependencies using the value of url rather than the base URL of that specific ecosystem.