From 218f39a4b74b8a821333b22a96351c038e6767c3 Mon Sep 17 00:00:00 2001 From: jupblb Date: Wed, 22 Apr 2026 11:14:13 +0200 Subject: [PATCH 1/2] renovate: auto-update test matrix project versions quarterly --- .github/renovate.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index ee43e446..afe00e0c 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -3,5 +3,22 @@ "ignorePaths": [ "**/internal/testdata/snapshots/**", ".tool-versions" ], "extends": [ "local>sourcegraph/renovate-config" + ], + "customManagers": [ + { + "customType": "regex", + "fileMatch": ["^\\.github/workflows/test\\.yaml$"], + "matchStrings": [ + "repo: (?[^\\s]+)\\s+ref: (?v[^\\s]+)" + ], + "datasourceTemplate": "github-releases" + } + ], + "packageRules": [ + { + "matchManagers": ["custom.regex"], + "matchFileNames": [".github/workflows/test.yaml"], + "schedule": ["on the first day of the month in January,April,July,October"] + } ] } From e9ac9308c9605a413019a1ff600f516278152304 Mon Sep 17 00:00:00 2001 From: jupblb Date: Wed, 22 Apr 2026 11:17:39 +0200 Subject: [PATCH 2/2] renovate: use config:recommended, clean up ignorePaths --- .github/renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index afe00e0c..56a57f49 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,8 +1,8 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "ignorePaths": [ "**/internal/testdata/snapshots/**", ".tool-versions" ], + "ignorePaths": [ "internal/testdata/snapshots/**" ], "extends": [ - "local>sourcegraph/renovate-config" + "config:recommended" ], "customManagers": [ {