Skip to content

Commit d2b2a9a

Browse files
committed
Add cooldown to dependabot
This prevents dependabot from proposing an update soon after it is released. This helps avoid buggy updates, and also provides adequate time for "supply chain attacks" to be discovered and yanked.
1 parent 2529446 commit d2b2a9a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ updates:
1313
# Enable updates for Rust packages
1414
- package-ecosystem: "cargo"
1515
directory: "/" # Location of package manifests
16+
cooldown:
17+
default-days: 5
18+
semver-major-days: 30
19+
semver-minor-days: 7
20+
semver-patch-days: 3
1621
schedule:
1722
interval: "daily"
1823
ignore:

0 commit comments

Comments
 (0)