From 99e26ad9e43112d3b8a72b3ac2a6c730163d9113 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Mon, 9 Sep 2024 18:26:20 -0700 Subject: [PATCH] Update renovate config to run go mod tidy (#355) Adds options to run `go mod tidy` after an update and to update import paths in case there's a major update of a dependency. --- renovate.json5 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/renovate.json5 b/renovate.json5 index 897864b..6bb4acd 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -8,4 +8,8 @@ "group:allNonMajor", "schedule:earlyMondays", // Run once a week. ], + postUpdateOptions: [ + "gomodTidy", + "gomodUpdateImportPaths" + ] }