diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-15 11:53:41 +1000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2022-04-15 11:53:41 +1000 |
commit | e13c1fe112e6939e8eae5a693e204804df21fd1d (patch) | |
tree | 37e0fbae90ebfb554228ba500e6c20a467eb323c /.github | |
parent | 2e2d99b2f91adace5c0f68f666a730f21a8c8bb2 (diff) | |
download | archiva-e13c1fe112e6939e8eae5a693e204804df21fd1d.tar.gz archiva-e13c1fe112e6939e8eae5a693e204804df21fd1d.zip |
use only maven central for dependabot
Signed-off-by: Olivier Lamy <olamy@apache.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 25 |
1 files changed, 25 insertions, 0 deletions
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" + |