From 2d54995e4b308b5fff0996ae1ddf462265fbea62 Mon Sep 17 00:00:00 2001 From: Charlie Vieth Date: Sat, 2 Nov 2024 17:55:12 -0400 Subject: [PATCH] ci: fix icu4c on macos and CIFuzz test --- .github/workflows/go.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index c96bf31a..bf6e4867 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -21,7 +21,11 @@ jobs: GO: ${{ matrix.go }} steps: - if: startsWith(matrix.os, 'macos') - run: brew update + run: | + brew update + # Handle issues with the upgrade to icu4c v76. + [[ -e "$(brew --prefix)/opt/icu4c" ]] || \ + brew reinstall icu4c - uses: actions/setup-go@v2 with: