From e4d7b1915ae48e2258ab9f8221d96efb200539f7 Mon Sep 17 00:00:00 2001 From: Rico Berger Date: Sun, 15 Oct 2023 20:04:08 +0200 Subject: [PATCH] Add Dependabot Configuration (#205) Add Dependabot configuration to keep our Docker images, GitHub Actions and Go packages up to date. --- .github/dependabot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..38553e6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,28 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + groups: + github-actions: + patterns: + - "*" + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "monthly" + groups: + docker: + patterns: + - "*" + + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + groups: + gomod: + patterns: + - "*"