Skip to content

Commit 88eb12d

Browse files
authored
chore(ci): modernize Renovate config (#659)
Modernizes the Renovate config to the current schema. Renovate v36+ renamed several options, and `renovate-config-validator --strict` reported that the config needs migration. Applies exactly the migrations the validator prescribes: - `config:base` → `config:recommended` - `pinVersions: false` → `rangeStrategy: "replace"` No behavior change: after the change the config validates cleanly (`Config validated successfully`), whereas before it emitted `Config migration necessary`.
1 parent c989ce7 commit 88eb12d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

renovate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"extends": ["config:base", ":semanticCommitTypeAll(chore)"],
3-
"pinVersions": false,
2+
"extends": ["config:recommended", ":semanticCommitTypeAll(chore)"],
3+
"rangeStrategy": "replace",
44
"separateMajorMinor": false,
55
"dependencyDashboard": false,
66
"semanticCommits": "enabled",

0 commit comments

Comments
 (0)