From 9bd84e428e1cfba929ef2a50c2052080feb856cb Mon Sep 17 00:00:00 2001 From: Farjaad Rawasia Date: Tue, 1 Sep 2026 08:38:17 -0400 Subject: [PATCH] fix: point dependabot docker updates at the repo root The Dockerfile lives at the repo root, but the docker ecosystem entry was scoped to src/, so base image digests were never being updated. Co-Authored-By: Claude Opus 5 (1M context) --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 856486d6..8f86e03b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,6 @@ updates: schedule: interval: "weekly" - package-ecosystem: "docker" - directory: "src/" + directory: "/" schedule: interval: "weekly"