From fd9d09678ceebaecb59378191b827f5ad090c0fd Mon Sep 17 00:00:00 2001 From: Charlie Vieth Date: Sat, 2 Nov 2024 17:55:12 -0400 Subject: [PATCH] gh: fix icu4c on macos --- .github/workflows/go.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index c96bf31a..590f7ffa 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -21,7 +21,9 @@ jobs: GO: ${{ matrix.go }} steps: - if: startsWith(matrix.os, 'macos') - run: brew update + run: | + brew update + brew reinstall icu4c - uses: actions/setup-go@v2 with: