Conversation
…erenced manifests build-push-action defaults attach provenance/SBOM attestations, making each tag an OCI index with untagged child manifests. The weekly untagged-image cleanup (min-versions-to-keep: 0) deleted those children, breaking every tag (404 on pull). Set provenance:false/sbom:false for a plain single-platform manifest, and give prune-untagged a min-versions-to-keep buffer plus a hazard warning.
- pyproject.toml bumped to 0.1.2 - CHANGELOG: rolled [Unreleased] → [0.1.2] — 2026-06-07 - README: version badge + What's New entry, Status updated - CLAUDE.md: Build Status block updated (Last shipped v0.1.2)
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.
[0.1.2] — 2026-06-07
Fixed
manifest unknown/ 404) — the publishworkflow built with
docker/build-push-actiondefaults, which attach provenance/SBOMattestations and turn each pushed tag into an OCI image index whose per-platform and
attestation manifests are untagged. The weekly "Cleanup Container Images" job deleted
untagged versions with
min-versions-to-keep: 0, removing those child manifests and leavingevery tag (
:latest,:v0.1.1, …) pointing at a missing manifest. The build now pushes aplain single-platform manifest (
provenance: false,sbom: false), and the cleanup keeps abuffer (
min-versions-to-keep: 5) with a warning that untagged-deletion is unsafe forindexed/attested images. Pulling
:latestworks again after the next publish.