File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ $schema : "https://docs.renovatebot.com/renovate-schema.json" ,
3
+ extends : [ "config:recommended" , ":maintainLockFilesMonthly" ] ,
4
+ automerge : true ,
5
+ packageRules : [
6
+ {
7
+ matchCategories : [ "javascript" , "typescript" ] ,
8
+ updateTypes : [ "patch" ] ,
9
+ // Disable patch updates for single dependencies because patches
10
+ // are updated periodically with lockfile maintainance.
11
+ enabled : false ,
12
+ } ,
13
+ {
14
+ matchCategories : [ "rust" ] ,
15
+ updateTypes : [ "patch" ] ,
16
+ // Disable patch updates for single dependencies because patches
17
+ // are updated periodically with lockfile maintainance.
18
+ enabled : false ,
19
+ } ,
20
+ ] ,
21
+ // Receive any update that fixes security vulnerabilities.
22
+ // We need this because we disabled "patch" updates for Rust.
23
+ // Note: You need to enable "Dependabot alerts" in "Code security" GitHub
24
+ // Settings to receive security updates.
25
+ // See https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts
26
+ vulnerabilityAlerts : {
27
+ enabled : true ,
28
+ } ,
29
+ }
You can’t perform that action at this time.
0 commit comments