From c207fb7ad196f72b1854f2733ea1ea4854627b2e Mon Sep 17 00:00:00 2001 From: "Sean C. Sullivan" Date: Sat, 5 Sep 2020 03:59:50 -0700 Subject: [PATCH] enable Dependabot 2 Explicitly configure Dependabot v2 using a yaml file https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/ Signed-off-by: Sean C. Sullivan --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..b76b8957 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "maven" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily"