From f73a5d1f0303877c4b553a9ed78d435a247c2b9a Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Fri, 22 Sep 2023 08:47:46 +0200 Subject: [PATCH] dependabot: Check for Dockerfile as well --- .github/dependabot.yml | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 50957ab..9b0db10 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,17 +1,24 @@ version: 2 updates: -# raise PRs for go updates -- package-ecosystem: gomod - directory: "/" - schedule: - interval: daily - time: "13:00" - open-pull-requests-limit: 10 + # raise PRs for go updates + - package-ecosystem: gomod + 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 + # 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