ci: Disable Cargo.lock updates for patch/minor to make MSRV handling easier later.

This commit is contained in:
Fabian-Lars
2024-05-01 22:17:33 +02:00
committed by GitHub
parent e045223660
commit f255343b54
+7
View File
@@ -23,6 +23,13 @@
"description": "Prevent unwanted minor/patch Cargo.toml updates",
"matchManagers": ["cargo"],
"rangeStrategy": "update-lockfile"
},
{
"description": "Prevent spammy minor/patch Cargo.lock updates",
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"enabled": false
}
],
"postUpdateOptions": ["pnpmDedupe"]