From 1bc48458eb2fd1554757d6841a169f2ce94d43fe Mon Sep 17 00:00:00 2001 From: Adam Cmiel Date: Tue, 16 Jul 2024 13:22:13 +0200 Subject: [PATCH] renovate: run go mod tidy We have a bunch of Go linters enabled, one of them checks that go.mod and go.sum are tidy. Renovate updates for Go modules fail this check almost every time. Try to fix the situation by making Renovate run go mod tidy. https://docs.renovatebot.com/configuration-options/#postupdateoptions Signed-off-by: Adam Cmiel --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/renovate.json b/renovate.json index 2847977851..45febec930 100644 --- a/renovate.json +++ b/renovate.json @@ -74,5 +74,8 @@ "enabled": false, "groupName": "ignore" } + ], + "postUpdateOptions": [ + "gomodTidy" ] }