From e13c1fe112e6939e8eae5a693e204804df21fd1d Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Fri, 15 Apr 2022 11:53:41 +1000 Subject: [PATCH] use only maven central for dependabot Signed-off-by: Olivier Lamy --- .github/dependabot.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1cc272f74..3433e9272 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,13 +16,38 @@ # under the License. version: 2 + +registries: + maven-central: + type: maven-repository + url: https://repo.maven.apache.org/maven2 + updates: - package-ecosystem: "maven" directory: "/" + registries: + - maven-central + target-branch: "master" + schedule: + interval: "daily" + + - package-ecosystem: "maven" + directory: "/" + registries: + - maven-central + target-branch: "archiva-2.x" schedule: interval: "daily" - package-ecosystem: "github-actions" directory: "/" + target-branch: "archiva-2.x" schedule: interval: "daily" + + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "master" + schedule: + interval: "daily" + -- 2.39.5