From 6507297342889e3deff89180086ff9947fa38939 Mon Sep 17 00:00:00 2001 From: Andreas Burger Date: Wed, 3 Apr 2024 15:22:59 +0200 Subject: [PATCH] add dependabot config --- .github/dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..f0496dbff --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,21 @@ +# see https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: +- package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + groups: + # Group all version-updates, except Gardener. Gardener-components should receive their own PR this way. Security updates will + # also receive their own individual PRs. + all-dependencies: + applies-to: "version-updates" + patterns: + - "*" + exclude-patterns: + - "github.com/gardener*" +- package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly"