-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ҉αkα x⠠⠵ <[email protected]>
- Loading branch information
1 parent
10a97e4
commit edd55da
Showing
1 changed file
with
36 additions
and
8 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,16 +1,44 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
enable-beta-ecosystems: true | ||
updates: | ||
- package-ecosystem: "pip" | ||
- package-ecosystem: "pub" # See documentation for possible values. | ||
directory: "" # Location of package manifests | ||
schedule: | ||
interval: "daily" | ||
|
||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "daily" | ||
|
||
- package-ecosystem: docker | ||
directory: /.devcontainer | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "" | ||
schedule: | ||
interval: daily | ||
interval: "daily" | ||
# Update the npm manifest file to relax | ||
# the version requirements | ||
versioning-strategy: widen | ||
|
||
- package-ecosystem: github-actions | ||
directory: / | ||
- package-ecosystem: "composer" | ||
directory: "" | ||
schedule: | ||
interval: "daily" | ||
# Increase the version requirements for Composer | ||
# only when required | ||
versioning-strategy: increase-if-necessary | ||
|
||
- package-ecosystem: "pip" | ||
directory: "" | ||
schedule: | ||
interval: daily | ||
interval: "daily" | ||
# Only allow updates to the lockfile for pip and | ||
# ignore any version updates that affect the manifest | ||
versioning-strategy: lockfile-only |