-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependabot.yml
More file actions
29 lines (29 loc) · 1.04 KB
/
Copy pathdependabot.yml
File metadata and controls
29 lines (29 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# SEC-14 (update automation) and SEC-26 (SHAs kept current, 72h cooldown).
# Two ecosystems, because this repository pins in two places: `uv` for the Python
# lock (uv.lock, which pip-audit and `make verify` both read) and `github-actions`
# for the SHA-pinned actions in ci.yml, security.yml, and release.yml. A pinned SHA
# is only safe while something bumps it.
#
# `cooldown` holds each update for seven days after the upstream release, which is
# longer than the 72 hours SEC-26 asks for and is what keeps Semgrep's
# `dependabot-missing-cooldown` rule quiet. Python updates are grouped so the lock
# moves in one reviewable pull request rather than one per package.
version: 2
updates:
- package-ecosystem: uv
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 5
cooldown:
default-days: 7
groups:
python-dependencies:
patterns: ["*"]
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 5
cooldown:
default-days: 7