-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
# Config for Dependabot updates. See Documentation here: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
# # Config for Dependabot updates. See Documentation here: | ||
# # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
# Update GitHub actions in workflows | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
# Every weekday | ||
schedule: | ||
interval: 'daily' | ||
# version: 2 | ||
# updates: | ||
# # Update GitHub actions in workflows | ||
# - package-ecosystem: 'github-actions' | ||
# directory: '/' | ||
# # Every weekday | ||
# schedule: | ||
# interval: 'daily' | ||
|
||
# Enable version updates for Docker | ||
# We need to specify each Dockerfile in a separate entry because Dependabot doesn't | ||
# support wildcards or recursively checking subdirectories. Check this issue for updates: | ||
# https://github.com/dependabot/dependabot-core/issues/2178 | ||
- package-ecosystem: 'docker' | ||
# Look for a `Dockerfile` | ||
directory: 'compose/' | ||
# Every weekday | ||
schedule: | ||
interval: 'daily' | ||
# Ignore minor version updates (3.10 -> 3.11) but update patch versions | ||
ignore: | ||
- dependency-name: '*' | ||
update-types: | ||
- 'version-update:semver-major' | ||
- 'version-update:semver-minor' | ||
# # Enable version updates for Docker | ||
# # We need to specify each Dockerfile in a separate entry because Dependabot doesn't | ||
# # support wildcards or recursively checking subdirectories. Check this issue for updates: | ||
# # https://github.com/dependabot/dependabot-core/issues/2178 | ||
# - package-ecosystem: 'docker' | ||
# # Look for a `Dockerfile` | ||
# directory: 'compose/' | ||
# # Every weekday | ||
# schedule: | ||
# interval: 'daily' | ||
# # Ignore minor version updates (3.10 -> 3.11) but update patch versions | ||
# ignore: | ||
# - dependency-name: '*' | ||
# update-types: | ||
# - 'version-update:semver-major' | ||
# - 'version-update:semver-minor' | ||
|
||
# Enable version updates for Python/Pip - Production | ||
- package-ecosystem: 'pip' | ||
# Look for a `requirements.txt` in the `root` directory | ||
# also 'setup.cfg', 'runtime.txt' and 'requirements/*.txt' | ||
directory: '/' | ||
# Every weekday | ||
schedule: | ||
interval: 'daily' | ||
# # Enable version updates for Python/Pip - Production | ||
# - package-ecosystem: 'pip' | ||
# # Look for a `requirements.txt` in the `root` directory | ||
# # also 'setup.cfg', 'runtime.txt' and 'requirements/*.txt' | ||
# directory: '/' | ||
# # Every weekday | ||
# schedule: | ||
# interval: 'daily' |