From e638cf9193420c8db5375fde402c2f4b39caf117 Mon Sep 17 00:00:00 2001 From: leleliu008 Date: Wed, 13 Mar 2024 18:21:31 +0800 Subject: [PATCH] GitHub Actions: fix macos-12 failure due to python@3.12 Signed-off-by: leleliu008 --- .github/workflows/testing-mac.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing-mac.yml b/.github/workflows/testing-mac.yml index 151a94803e..085617f54f 100644 --- a/.github/workflows/testing-mac.yml +++ b/.github/workflows/testing-mac.yml @@ -25,9 +25,13 @@ jobs: # NOTE: DO NOT try to install python3 package via brew, it has already been included in macos-xx runner images # https://github.com/actions/runner-images/blob/macos-13/20231002.1/images/macos/macos-13-Readme.md#python + # https://github.com/universal-ctags/ctags/pull/3954 + - if: matrix.os == 'macos-13' + run: brew install --overwrite python@3.12 + - run: brew install automake pkg-config jansson libyaml pcre2 - - run: pip3 install docutils + - run: pip3 install docutils --break-system-packages - run: cc --version - run: make --version