Skip to content

fix: match private-module org casing to lowercase blanketops rename - #85

Merged
ntlaletsi70 merged 1 commit into
developfrom
fix/containerfile-org-casing
Jul 15, 2026
Merged

fix: match private-module org casing to lowercase blanketops rename#85
ntlaletsi70 merged 1 commit into
developfrom
fix/containerfile-org-casing

Conversation

@ntlaletsi70

Copy link
Copy Markdown
Collaborator

Summary

  • go.mod imports were renamed to lowercase github.com/blanketops/*, but Containerfile, melange.yaml, and five GitHub Actions workflows (ci.yaml, gosec.yml, vulnscan.yml, ko.yml, apko.yml) still set GOPRIVATE/GONOSUMDB and git config ... insteadOf rules against the old capitalized BlanketOps/* org.
  • GOPRIVATE glob matching and insteadOf URL rewriting are both case-sensitive literal matches, so the lowercase module path never matched, go mod download fell through to anonymous HTTPS, and failed against the private repo:
    fatal: could not read Username for 'https://github.com': terminal prompts disabled
    
    (seen in the main docker build-push-action run building tag main.)
  • Also updated the cosmetic doc link in release.yml.

Test plan

  • grep -rn "github.com/BlanketOps" across workflows/build files returns no hits
  • CI docker build (ci.yaml / ko.yml / apko.yml) succeeds and go mod download resolves private modules

go.mod now imports github.com/blanketops/* (lowercase), but Containerfile,
melange.yaml, and several CI workflows still set GOPRIVATE/GONOSUMDB and
git insteadOf rewrites against the old capitalized BlanketOps/* org. Since
GOPRIVATE globs and insteadOf are literal case-sensitive matches, private
module downloads fell through to anonymous HTTPS and failed
(docker build-push-action run on main: "could not read Username for
'https://github.com': terminal prompts disabled").
@ntlaletsi70
ntlaletsi70 merged commit dfbb354 into develop Jul 15, 2026
@ntlaletsi70
ntlaletsi70 deleted the fix/containerfile-org-casing branch July 15, 2026 18:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant