From 3531075aaecba3f20a4fae277815bb13f93f518f Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Sun, 17 May 2026 14:16:56 +0100 Subject: [PATCH 1/3] chore(renovate): correct path for `go.sum` --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 8ac4d6e63c..56b79e9506 100644 --- a/renovate.json +++ b/renovate.json @@ -56,7 +56,7 @@ "description": "", "matchFileNames": [ "**/*/go.mod", - "**/*.go.sum" + "**/*/go.sum" ], "postUpgradeTasks": { "commands": [ From c61b7b5e640e4721687b11a14430bce166e8d943 Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Sun, 17 May 2026 14:17:11 +0100 Subject: [PATCH 2/3] chore(renovate): add explicit parent path Instead of trying to make the `matchFileNames` match both, we can use a new pattern. --- renovate.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renovate.json b/renovate.json index 56b79e9506..49ffad5a4d 100644 --- a/renovate.json +++ b/renovate.json @@ -55,6 +55,8 @@ { "description": "", "matchFileNames": [ + "go.mod", + "go.sum", "**/*/go.mod", "**/*/go.sum" ], From a9e7a3131369d7793f8dd4778e627bfb6a8a0e1b Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Sun, 17 May 2026 14:18:10 +0100 Subject: [PATCH 3/3] chore(renovate): add missing description --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 49ffad5a4d..fd7d48d244 100644 --- a/renovate.json +++ b/renovate.json @@ -53,7 +53,7 @@ "enabled": false }, { - "description": "", + "description": "Run `make tidy` after updates to Go modules", "matchFileNames": [ "go.mod", "go.sum",