From 6be344add0b0075aea1150ad0c12bcfce53493f0 Mon Sep 17 00:00:00 2001 From: Ihor Kalnytskyi Date: Sun, 2 Aug 2026 02:09:01 +0300 Subject: [PATCH] Suppress Homebrew tap trust warnings in CI macOS runner images come with the preinstalled `aws/tap` Homebrew tap, but do not mark it as trusted. As a result, every `brew install` invocation produces a warning. Explicitly trust this tap in macOS CI jobs until runner images are fixed upstream [1]. [1]: https://github.com/actions/runner-images/issues/14232 --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 906ec2a1..9392ee05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,11 @@ jobs: with: persist-credentials: false + # Remove once https://github.com/actions/runner-images/issues/14232 is resolved. + - name: Trust preinstalled Homebrew taps + run: brew trust aws/tap + if: runner.os == 'macOS' + - name: Run setup-postgres uses: ./ id: postgres @@ -90,6 +95,11 @@ jobs: with: persist-credentials: false + # Remove once https://github.com/actions/runner-images/issues/14232 is resolved. + - name: Trust preinstalled Homebrew taps + run: brew trust aws/tap + if: runner.os == 'macOS' + - name: Run setup-postgres uses: ./ with: