1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-06-04 23:17:37 +02:00

chore: disable gorilla/csrf upgrades temporarily

Until https://github.com/gorilla/csrf/issues/186 is fixed
This commit is contained in:
Alec Thomas 2025-04-30 19:58:02 +10:00
parent 66b90e71b1
commit 1b932ecf9b

View File

@ -1,6 +1,6 @@
{ {
$schema: "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
extends: [ "extends": [
"config:recommended", "config:recommended",
":semanticCommits", ":semanticCommits",
":semanticCommitTypeAll(chore)", ":semanticCommitTypeAll(chore)",
@ -8,11 +8,16 @@
"group:allNonMajor", "group:allNonMajor",
"schedule:earlyMondays", // Run once a week. "schedule:earlyMondays", // Run once a week.
], ],
packageRules: [ "packageRules": [
{ {
matchPackageNames: ["golangci-lint"], "matchPackageNames": ["golangci-lint"],
matchManagers: ["hermit"], "matchManagers": ["hermit"],
enabled: false, "enabled": false
}, },
], {
"matchPackageNames": ["github.com/gorilla/csrf"],
"matchManagers": ["gomod"],
"enabled": false
}
]
} }