From 21c8eaa1c6eb93bf75120f3982a996fee1bed68c Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Sun, 17 Nov 2024 20:21:30 +0100 Subject: [PATCH] fix renovate module tidying --- go.mod | 2 ++ go.sum | 4 ++++ renovate.json | 7 ++++++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index ba05e775..74a36d64 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,5 @@ module git.cantorgymnasium.de/gcg/gcg-website go 1.19 + +require github.com/hugomods/icons/vendors/mdi v0.3.7 // indirect diff --git a/go.sum b/go.sum index e69de29b..e5e31435 100644 --- a/go.sum +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/hugomods/icons v0.6.6 h1:gGlafcBDRP7sSID+tgLcWdog+s/QBj8DIfU+h9tZj1U= +github.com/hugomods/icons v0.6.6/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= +github.com/hugomods/icons/vendors/mdi v0.3.7 h1:YUU61C3a0wUa0PejKc6fl+WntDjC/kqyqK4Io5Xkhww= +github.com/hugomods/icons/vendors/mdi v0.3.7/go.mod h1:uTiqmqmEmUe3wpVPpaKhAWSu5zunmBON1D2tgOyZWQs= diff --git a/renovate.json b/renovate.json index 7190a60b..4467d117 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,8 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "postUpgradeTasks": { + "commands": ["hugo mod tidy"], + "fileFilters": ["go.mod", "go.sum"], + "executionMode": "update" + } }