Skip to content

Commit 09917db

Browse files
committed
chore: add dependabot cooldown
One of the things I need to worry about with Anubis is the idea that could pwn a dependency and then get malicious code into prod without realizing it, a-la Jia Tan. Given that Anubis relies on tools like Dependabot to manage updating dependencies (good for other reasons), it makes sense to have Dependabot have a 7 day cooldown for new versions of dependencies. This follows the advice from Yossarian on their blog at [1]. Thanks for the post and easy to copy/paste snippets! [1]: https://blog.yossarian.net/2025/11/21/We-should-all-be-using-dependency-cooldowns Signed-off-by: Xe Iaso <me@xeiaso.net>
1 parent f032d5d commit 09917db

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ updates:
88
github-actions:
99
patterns:
1010
- "*"
11+
cooldown:
12+
default-days: 7
1113

1214
- package-ecosystem: gomod
1315
directory: /
@@ -17,6 +19,8 @@ updates:
1719
gomod:
1820
patterns:
1921
- "*"
22+
cooldown:
23+
default-days: 7
2024

2125
- package-ecosystem: npm
2226
directory: /
@@ -26,3 +30,5 @@ updates:
2630
npm:
2731
patterns:
2832
- "*"
33+
cooldown:
34+
default-days: 7

0 commit comments

Comments
 (0)