From b49c61636bc98f96da173e46c89763bcbfcaa060 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Tue, 21 Feb 2023 20:56:53 +0100 Subject: [PATCH] ci: add maven and docker to dependabot configuration --- .github/dependabot.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 583decfd1..28d0b0bc6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,15 @@ version: 2 updates: - # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" \ No newline at end of file + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "maven" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" +