diff --git a/.github/actions/prepare_runner/action.yml b/.github/actions/prepare_runner/action.yml index be00a020..b8073d99 100644 --- a/.github/actions/prepare_runner/action.yml +++ b/.github/actions/prepare_runner/action.yml @@ -13,7 +13,7 @@ runs: if: ${{ runner.os == 'macOS' }} shell: bash run: | - brew install \ + brew install --quiet \ bison \ ca-certificates \ ccache \ @@ -31,7 +31,7 @@ runs: shell: bash run: | # Uninstall any existing cmake - brew uninstall cmake --ignore-dependencies || true + brew uninstall --formula cmake --ignore-dependencies || true # Download specific cmake formula FORMULA_URL="https://raw.githubusercontent.com/Homebrew/homebrew-core/b4e46db74e74a8c1650b38b1da222284ce1ec5ce/Formula/c/cmake.rb" @@ -43,7 +43,7 @@ runs: echo "$FORMULA_EXPECTED_SHA256 /tmp/homebrew-formula/cmake.rb" | shasum -a 256 -c # Install cmake from the specific formula with force flag - brew install --formula --force /tmp/homebrew-formula/cmake.rb + brew install --formula --quiet --force /tmp/homebrew-formula/cmake.rb - name: Fix git permissions on Linux if: ${{ runner.os == 'Linux' }}