From 3e5ce49b0d27b5654a5fb3111d289f248aa32f3d Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Mon, 20 Sep 2021 18:51:41 +0200 Subject: [PATCH] chore(tools): add docker to the dependencies checked by dependabot --- .github/dependabot.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 4299d7522..c2bba0ea8 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -1,9 +1,23 @@ version: 2 -updates: +registries: + ghcr-io: # Define access for a private registry + type: docker-registry + url: ghcr.io + username: ${{secrets.BOT_USERNAME}} + password: ${{secrets.BOT_TOKEN}} +updates: - package-ecosystem: "github-actions" directory: "/" schedule: # Check for updates to GitHub Actions every sunday interval: "weekly" day: "sunday" + + - package-ecosystem: "docker" + directory: "/docker" + registries: + - ghcr-io # Allow version updates for dependencies in this registry + schedule: + interval: "weekly" + day: "sunday"