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
30
31
32
33
34
35
36
37
38
version: 2
updates:
# Keep Rust/Cargo dependencies up to date.
# This covers the main workspace (root, generate_tests, dig).
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
cooldown:
default-days: 7
semver-major-days: 30
semver-minor-days: 14
semver-patch-days: 3
# The fuzz/ crate is deliberately excluded from the main workspace (see
# fuzz/Cargo.toml), so it needs its own entry to be kept up to date.
- package-ecosystem: "cargo"
directory: "/fuzz"
schedule:
interval: "weekly"
day: "friday"
cooldown:
default-days: 7
semver-major-days: 30
semver-minor-days: 14
semver-patch-days: 3
# Keep GitHub Actions up to date.
# Note: the github-actions ecosystem only supports "default-days" for
# cooldown (no semver-major/minor/patch-days).
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
cooldown:
default-days: 7