File tree Expand file tree Collapse file tree 1 file changed +51
-0
lines changed
Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ $schema : "https://docs.renovatebot.com/renovate-schema.json" ,
3+ "dependencyDashboard" : true ,
4+ "schedule" : [
5+ "before 5am on Monday"
6+ ] ,
7+ "rust" : {
8+ "enabled" : true ,
9+ "fileMatch" : [
10+ "Cargo.lock"
11+ ] ,
12+ "packageRules" : [
13+ {
14+ "matchPackageNames" : [
15+ "*"
16+ ] ,
17+ "groupName" : "Rust Dependencies" ,
18+ "groupSlug" : "rust-deps" ,
19+ "schedule" : [
20+ "before 5am on Monday"
21+ ]
22+ }
23+ ]
24+ }
25+ // extends: [
26+ // "config:recommended",
27+ // ":maintainLockFilesWeekly",
28+ // "docker:disable",
29+ // ],
30+ // packageRules: [
31+ // {
32+ // matchCategories: [
33+ // "rust"
34+ // ],
35+ // updateTypes: [
36+ // "patch"
37+ // ],
38+ // Disable patch updates for single dependencies because patches
39+ // are updated periodically with lockfile maintainance.
40+ // enabled: false,
41+ // },
42+ // ],
43+ // Receive any update that fixes security vulnerabilities.
44+ // We need this because we disabled "patch" updates for Rust.
45+ // Note: You need to enable "Dependabot alerts" in "Code security" GitHub
46+ // Settings to receive security updates.
47+ // See https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts
48+ // vulnerabilityAlerts: {
49+ // enabled: true,
50+ // },
51+ }
You can’t perform that action at this time.
0 commit comments