From e212656ce01b236369d2c92c2d28ee8223d9a483 Mon Sep 17 00:00:00 2001 From: KEINOS Date: Sat, 13 Apr 2024 14:23:36 +0900 Subject: [PATCH] chore: add comment for the workaround Sometimes `brew upgrade` of Graphviz action fails on macOS runner while upgrading python packages. This error is based on the below issue: - https://github.com/actions/setup-python/issues/577 Re-linking python will fix this problem: - Ref: https://github.com/Homebrew/homebrew-core/issues/165793#issuecomment-1989441193 --- .github/workflows/go.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index bccb6c7..e211d86 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -32,6 +32,7 @@ jobs: if: matrix.os == 'macos-latest' run: | : # Workaround GitHub Actions Python issues + : # https://github.com/Homebrew/homebrew-core/issues/165793#issuecomment-1989441193 brew unlink python && brew link --overwrite python - name: Set up Graphviz