From f571b622230631df86776196a891f1db807d13ce Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 27 Sep 2023 18:39:13 +0200 Subject: [PATCH] dependabot: check for github actions, docker and gems --- .github/dependabot.yml | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c8f8016..c6b4cf8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,25 @@ +--- version: 2 updates: -- package-ecosystem: bundler - directory: "/" - schedule: - interval: daily - time: "13:00" - open-pull-requests-limit: 10 + # raise PRs for gem updates + - package-ecosystem: bundler + directory: "/" + schedule: + interval: daily + time: "13:00" + open-pull-requests-limit: 10 + + # Maintain dependencies for GitHub Actions + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: daily + time: "13:00" + open-pull-requests-limit: 10 + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + time: "13:00" + open-pull-requests-limit: 10