From 1e7cbc38c6108d5ec4912903b2e0ad26ad4d1412 Mon Sep 17 00:00:00 2001 From: Matt Vinall Date: Mon, 22 Jun 2026 06:13:46 +0100 Subject: [PATCH] Update Dependabot configuration for Docker and Go modules Added Docker and Go modules to Dependabot configuration with weekly updates. --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..94b6949 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +version: 2 +updates: + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "16:00" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "16:00"