fix: point dependabot docker updates at the repo root - #325
Merged
Conversation
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) <noreply@anthropic.com>
archf
approved these changes
Sep 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
.github/dependabot.ymlscopes thedockerecosystem todirectory: "src/", but the only Dockerfile in this repo is at the root. Dependabot has therefore never opened a PR for the pinned base image digests inDockerfile.This surfaced while looking at CVE-2026-63073 (OpenSSL DoS, fixed in
openssl3.5.8-r0): the pinnedalpine@sha256:28bd5fe8…still shipslibcrypto3/libssl33.5.7-r0, and nothing was watching it.Change
Point the docker ecosystem at
/so both thegolang:alpinebuild stage and thealpine:latestfinal stage get digest bump PRs.Note
This does not itself remediate CVE-2026-63073 — Docker Hub has not published a rebuilt
alpine:latestyet, so a digest bump today is a no-op. That fix is tracked separately.🤖 Generated with Claude Code