Make renovate tidy all go modules

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2022-10-17 16:11:35 +02:00
parent 87d94c59fd
commit a0bdf0c889

View File

@ -10,9 +10,17 @@
"dependencies"
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"postUpgradeTasks": {
"commands": [
"for mod in $(go list -f '{{.Dir}}' -m); do (cd $mod; go mod tidy); done"
],
"fileFilters": [
"**/go.mod",
"**/go.sum"
]
},
"ignorePaths": [
"cli/internal/helm/charts/cilium/**"
],