Skip to content

Commit 8c0fade

Browse files
committed
CI: Work around a macOS runner bug with brew
1 parent 57ec90c commit 8c0fade

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build_and_release.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,14 @@ jobs:
285285
# with:
286286
# python-version: '3.13'
287287

288-
- name: brew update and upgrade
289-
run: brew update && brew upgrade
288+
- name: brew update and upgrade with a workaround for https://github.com/actions/runner-images/issues/9966
289+
run: |
290+
brew update
291+
brew unlink [email protected]
292+
brew unlink [email protected]
293+
brew link --overwrite [email protected]
294+
brew link --overwrite [email protected]
295+
brew upgrade
290296
291297
- name: Install brew dependencies
292298
run: |

0 commit comments

Comments
 (0)