Skip to content

Commit

Permalink
gh: fix icu4c on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
charlievieth committed Nov 3, 2024
1 parent 4fb2899 commit c65c946
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c65c946

Please sign in to comment.