From 4814c42c3b2d36f87fb7f7b8ff231ae0d8b7f0e8 Mon Sep 17 00:00:00 2001 From: VariableVince <24507472+VariableVince@users.noreply.github.com> Date: Tue, 14 Apr 2026 05:19:01 +0200 Subject: [PATCH] Dependabot: check for go dependency security updates too (#3660) ## Description: Let dependabot also check for security updates for go dependencies periodically. Even though we only use go in map-generator and it's only one dependency currently, still good to catch security updates. ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: tryout33 --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .github/dependabot.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5b4454ae0..e4d6c11ed 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,16 @@ updates: groups: updates: applies-to: version-updates - patterns: ["*"] #wildcard, needs brackets as bugfix apparently + patterns: ["*"] # wildcard, needs brackets as bugfix apparently security: applies-to: security-updates patterns: ["*"] + - package-ecosystem: "gomod" + directory: "/map-generator" + schedule: + interval: "monthly" + open-pull-requests-limit: 0 # exclude version updates + groups: + golang: + applies-to: security-updates + patterns: ["*"]