From 5dfdbd06ebded0884732216ceaab9a2e064f04a5 Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Sat, 1 Jun 2024 07:08:33 +0200 Subject: [PATCH] ci/macos: silence brew warnings --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5eaa1b8f3..412578e5e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -106,13 +106,13 @@ jobs: ) # Lua 5.1 is disabled, so we need to work around that: # - fetch all packages - brew fetch "${packages[@]}" + brew fetch --formula "${packages[@]}" # - disable auto-updates export HOMEBREW_NO_AUTO_UPDATE=1 # - install lua@5.1 from cache - brew install "$(brew --cache lua@5.1)" + brew install --formula --quiet "$(brew --cache lua@5.1)" # - and install the rest - brew install "${packages[@]}" + brew install --formula --quiet "${packages[@]}" - name: Update PATH run: >