ci: fix golangci-lint custom manager and enable OSV alerts in Renovate (#2901)

This commit is contained in:
Valentin Maerten
2026-06-30 22:50:31 +02:00
committed by GitHub
parent d601746d4b
commit 0aa0496f85

View File

@@ -6,14 +6,15 @@
"schedule:weekly", "schedule:weekly",
":semanticCommitTypeAll(chore)" ":semanticCommitTypeAll(chore)"
], ],
"mode": "full",
"addLabels":["area: dependencies"], "addLabels":["area: dependencies"],
"osvVulnerabilityAlerts": true,
"postUpdateOptions": ["gomodTidy"],
"customManagers": [ "customManagers": [
{ {
"customType": "regex", "customType": "regex",
"fileMatch": ["^\\.github/workflows/.*\\.ya?ml$"], "managerFilePatterns": ["/^\\.github/workflows/.*\\.ya?ml$/"],
"matchStrings": [ "matchStrings": [
"uses:\\s*golangci/golangci-lint-action@\\S+\\s+with:\\s+version:\\s*(?<currentValue>v[\\d.]+)" "uses:\\s*golangci/golangci-lint-action@\\S+(?:\\s*#[^\\n]*)?\\s+with:\\s+version:\\s*(?<currentValue>v[\\d.]+)"
], ],
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",
"depNameTemplate": "golangci/golangci-lint" "depNameTemplate": "golangci/golangci-lint"