From 41871ea7552f8ca139e0caa71c026caf3e43104d 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/cifuzz.yaml | 2 +- .github/workflows/go.yaml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cifuzz.yaml b/.github/workflows/cifuzz.yaml index e198c52..f923745 100644 --- a/.github/workflows/cifuzz.yaml +++ b/.github/workflows/cifuzz.yaml @@ -22,7 +22,7 @@ jobs: dry-run: false sanitizer: ${{ matrix.sanitizer }} - name: Upload Crash - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 if: failure() with: name: ${{ matrix.sanitizer }}-artifacts diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index c96bf31..bf6e486 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: