From 0aa0496f856d6f7591d0705d92b7d7ca3fe79dc6 Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Tue, 30 Jun 2026 22:50:31 +0200 Subject: [PATCH] ci: fix golangci-lint custom manager and enable OSV alerts in Renovate (#2901) --- .github/renovate.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index b7cfe611..a618e41e 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -6,14 +6,15 @@ "schedule:weekly", ":semanticCommitTypeAll(chore)" ], - "mode": "full", "addLabels":["area: dependencies"], + "osvVulnerabilityAlerts": true, + "postUpdateOptions": ["gomodTidy"], "customManagers": [ { "customType": "regex", - "fileMatch": ["^\\.github/workflows/.*\\.ya?ml$"], + "managerFilePatterns": ["/^\\.github/workflows/.*\\.ya?ml$/"], "matchStrings": [ - "uses:\\s*golangci/golangci-lint-action@\\S+\\s+with:\\s+version:\\s*(?v[\\d.]+)" + "uses:\\s*golangci/golangci-lint-action@\\S+(?:\\s*#[^\\n]*)?\\s+with:\\s+version:\\s*(?v[\\d.]+)" ], "datasourceTemplate": "github-releases", "depNameTemplate": "golangci/golangci-lint"