From 66260b78a2797fe9f8fa4615623deb0dbe361335 Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 24 Jun 2026 16:55:40 +0100 Subject: [PATCH] ci: add 'brew trust' invocation to macOS CI Should fix issues like: > Error: Refusing to load formula louisbrunner/valgrind/valgrind from untrusted tap louisbrunner/valgrind. > Run `brew trust --formula louisbrunner/valgrind/valgrind` or `brew trust louisbrunner/valgrind` to trust it. > Error: Process completed with exit code 1. --- .github/actions/install-homebrew-valgrind/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/install-homebrew-valgrind/action.yml b/.github/actions/install-homebrew-valgrind/action.yml index e9aa6150..c4e0b5d9 100644 --- a/.github/actions/install-homebrew-valgrind/action.yml +++ b/.github/actions/install-homebrew-valgrind/action.yml @@ -5,6 +5,7 @@ runs: steps: - run: | brew tap LouisBrunner/valgrind + brew trust --formula LouisBrunner/valgrind/valgrind brew fetch --HEAD LouisBrunner/valgrind/valgrind echo "CI_HOMEBREW_CELLAR_VALGRIND=$(brew --cellar valgrind)" >> "$GITHUB_ENV" shell: bash