Conversation
The pinned digest sha256:4c9fe6... no longer resolves in Docker Hub (HTTP 404), which surfaced in CI as an opaque 'failed to solve: lease ... not found' during the golang build stage. Repin the tag's current digest sha256:8a5910f3... across all 14 Dockerfiles that referenced the dead one.
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Owner
Author
|
Closing: my diagnosis was wrong. On a token refresh, both the old and new |
This was referenced Sep 26, 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.
Every Go honeypot image build has been failing on the shared self-hosted runner with an opaque
failed to solve: lease "...": not found. The buildkit lease error is a symptom, not the cause.Root cause
The pinned base image digest no longer exists:
When a
FROM <image>@<digest>cannot be resolved, buildkit reports the failure through the solve lease rather than a clean base-image error, which is why it looked like a runner fault. It was not — reruns, builder restarts and a full build-cache prune all reproduced it identically.Fix
Repin
golang:1.27-alpineto the tag's current digestsha256:8a5910f31396cd4d89662f56c68b3ae31d374308270a1c3bd96672ee5ed43414(verified live in Docker Hub) across the 14 Dockerfiles that referenced the dead digest. Digest pinning is retained — the tag is not floating.Impact
Unblocks the container jobs on PRs #3297, #3298, #3300, #3301 and any other Go-image build.
Verification
registry-1.docker.io.docker-content-digestfor1.27-alpine.