From ece717b851b9482fd861a04b719e4d7b2fd1c8a2 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Tue, 6 Aug 2024 10:48:45 +0900 Subject: [PATCH] Fixed brew update on CI. --- .github/workflows/gha.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gha.yml b/.github/workflows/gha.yml index 4abe45fe5..64d04453e 100644 --- a/.github/workflows/gha.yml +++ b/.github/workflows/gha.yml @@ -21,8 +21,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Install Dependencies - brew update - brew install --force llvm + run: | + brew update + brew install --force llvm - name: Cache boost id: cache-boost