From fa0d50787cef241d8347585ef3e0d78983de7f7e Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Thu, 24 Oct 2024 14:57:06 +0100 Subject: [PATCH] a fix? --- .github/actions/install-homebrew-valgrind/action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-homebrew-valgrind/action.yml b/.github/actions/install-homebrew-valgrind/action.yml index 36f461cc0f..78128fb136 100644 --- a/.github/actions/install-homebrew-valgrind/action.yml +++ b/.github/actions/install-homebrew-valgrind/action.yml @@ -4,8 +4,9 @@ runs: using: "composite" steps: - run: | - brew tap hebasto/valgrind --branch=241024-ventura-supp - brew fetch --HEAD hebasto/valgrind/valgrind + brew tap hebasto/valgrind + cd $(brew --repository)/Library/Taps/hebasto/valgrind + git checkout 241024-ventura-supp echo "CI_HOMEBREW_CELLAR_VALGRIND=$(brew --cellar valgrind)" >> "$GITHUB_ENV" shell: bash