From fb38f00ebd83c28f7b5c1270680ee8b13d69942d Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 21 Jan 2020 18:26:41 +0100 Subject: [PATCH] Add gomodTidy to postUpdateOptions in renovate.json (#50) This will lead to `go mod tidy` being run after go module updates to purge unused verison hashes from go.sum See https://docs.renovatebot.com/configuration-options/#postupdateoptions for details. --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/renovate.json b/renovate.json index f45d8f1..5ae9d96 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,8 @@ { "extends": [ "config:base" + ], + "postUpdateOptions": [ + "gomodTidy" ] }