ci: allow Senzing SDK cask under Homebrew 6.0 tap trust#412
Closed
docktermj wants to merge 1 commit into
Closed
Conversation
Homebrew 6.0 (2026-06-11) introduced tap trust, which refuses to load the migration-redirected senzingsdk cask from the third-party senzing/senzingsdk tap. macOS runner images picked this up around 2026-06-24, breaking all production-v4 macOS pytest jobs on main and every open PR. Set HOMEBREW_NO_REQUIRE_TAP_TRUST=1 at the workflow level so the install action's brew install --cask succeeds during the transition.
🤖 Claude Code ReviewCode Review:
|
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
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
All
production-v4macOS pytest jobs are failing onmain(scheduled run) and on every open PR (including #411). The break is environmental, not caused by any PR — the macOS runner image picked up Homebrew 6.0 (released 2026-06-11), which introduced tap trust.The
Install Senzing SDKstep fails with:The official
cask_tap_migrationsredirect the short cask namesenzingsdkto the third-partysenzing/senzingsdktap, and Homebrew 6.0 now refuses to load an auto-redirected cask from an untrusted tap. (staging-v4uses a differently-named cask and currently only warns.)Fix
Set
HOMEBREW_NO_REQUIRE_TAP_TRUST=1at the workflow level inpytest-darwin.yamlso the install action'sbrew install --caskis allowed during Homebrew's transition window.This is the documented transition escape hatch. The durable fix belongs upstream in
senzing-factory/github-action-install-senzing-sdk(it shouldbrew trustthe tap it installs); this unblocks CI in the meantime.Notes
@dependabot rebase.main's nightlyPytest darwinschedule.