From 85986d13dbaa655c02d453c16745ef87395d15d8 Mon Sep 17 00:00:00 2001 From: Landon Grindheim Date: Fri, 8 Apr 2022 14:43:37 +0000 Subject: [PATCH] Configure ghcr.io as a registry It had seemed that we were able to pull from this registry without authenticating, but I've noticed 401 errors in our update jobs. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f465ac4..567def3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,8 +8,16 @@ updates: directory: '/docker' schedule: interval: 'daily' + registries: + - ghcr - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" +registries: + ghcr: + type: docker-registry + url: ghcr.io + username: x + password: ${{ secrets.DEPENDABOT_GHPR_TOKEN }}