File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-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
+ matchManagers : [ "github-actions" ] ,
22
+ // At 06:XX on Monday.
23
+ schedule : "* 6 * * 1" ,
24
+ groupName : "Github Actions" ,
25
+ } ,
26
+ ] ,
27
+ // Receive any update that fixes security vulnerabilities.
28
+ // We need this because we disabled "patch" updates for Rust.
29
+ // Note: You need to enable "Dependabot alerts" in "Code security" GitHub
30
+ // Settings to receive security updates.
31
+ // See https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts
32
+ vulnerabilityAlerts : {
33
+ enabled : true ,
34
+ } ,
35
+ }
You can’t perform that action at this time.
0 commit comments