We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82bc911 commit 41871eaCopy full SHA for 41871ea
.github/workflows/cifuzz.yaml
@@ -22,7 +22,7 @@ jobs:
22
dry-run: false
23
sanitizer: ${{ matrix.sanitizer }}
24
- name: Upload Crash
25
- uses: actions/upload-artifact@v1
+ uses: actions/upload-artifact@v4
26
if: failure()
27
with:
28
name: ${{ matrix.sanitizer }}-artifacts
.github/workflows/go.yaml
@@ -21,7 +21,11 @@ jobs:
21
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
29
30
- uses: actions/setup-go@v2
31
0 commit comments