From bfe3a4722ea72aac5a1e06a5cfcb88d8db7a5bbc Mon Sep 17 00:00:00 2001 From: Tom Fleet Date: Thu, 10 Jul 2025 09:51:08 +0100 Subject: [PATCH 1/2] Ensure renovate runs `go mod tidy` after updates --- .github/renovate.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 38c2ad7..5c6984b 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,6 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ] -} \ No newline at end of file + "extends": ["config:recommended"], + "labels": ["dependencies"], + "postUpdateOptions": ["gomodTidy"] +} From f79dda94135b441c59efcf5be21841d835f0b8f3 Mon Sep 17 00:00:00 2001 From: Tom Fleet Date: Thu, 10 Jul 2025 09:52:18 +0100 Subject: [PATCH 2/2] Fix linter --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index aea6a6e..f715372 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,4 +19,4 @@ jobs: contents: read uses: FollowTheProcess/ci/.github/workflows/Go.yml@v3 with: - lint-tool: staticcheck + linter: staticcheck