Skip to content

Commit 41871ea

Browse files
committed
ci: fix icu4c on macos and CIFuzz test
1 parent 82bc911 commit 41871ea

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/cifuzz.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
dry-run: false
2323
sanitizer: ${{ matrix.sanitizer }}
2424
- name: Upload Crash
25-
uses: actions/upload-artifact@v1
25+
uses: actions/upload-artifact@v4
2626
if: failure()
2727
with:
2828
name: ${{ matrix.sanitizer }}-artifacts

.github/workflows/go.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
GO: ${{ matrix.go }}
2222
steps:
2323
- if: startsWith(matrix.os, 'macos')
24-
run: brew update
24+
run: |
25+
brew update
26+
# Handle issues with the upgrade to icu4c v76.
27+
[[ -e "$(brew --prefix)/opt/icu4c" ]] || \
28+
brew reinstall icu4c
2529
2630
- uses: actions/setup-go@v2
2731
with:

0 commit comments

Comments
 (0)