From f3487462c29b9af052cc3db2495663119bb33f7a Mon Sep 17 00:00:00 2001 From: Adam Wildavsky Date: Mon, 27 Jul 2026 17:27:47 +0200 Subject: [PATCH] Silence Homebrew aws/tap trust warnings on macOS CI. GitHub-hosted runners ship the untrusted aws/tap; untap it before brew install so Homebrew 6 does not warn on every doxygen install. Co-authored-by: Cursor --- .github/workflows/ci_macos.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index e1499ed6..4caa12bc 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -20,7 +20,11 @@ jobs: # Install Doxygen, to generate documentation - name: Install Doxygen - run: brew install doxygen + run: | + # GitHub macOS runners ship aws/tap untrusted under Homebrew 6; + # untap it so brew install does not warn on every run. + brew untap aws/tap || true + brew install doxygen # Prefetch external repos (emsdk via //..., LLVM); retry network flakes only - name: Prefetch external repos