From f4c1389fbcc21e3e4b37a7dbe5018e1a7314f6cd Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 21 Oct 2021 12:59:59 +1100 Subject: [PATCH] github/workflows: Use Python 3.8 for macos workflow. Otherwise it gets a more recent version which fails some of the test suite. Signed-off-by: Damien George --- .github/workflows/ports_unix.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ports_unix.yml b/.github/workflows/ports_unix.yml index 0e6a98f6b..4e75172b6 100644 --- a/.github/workflows/ports_unix.yml +++ b/.github/workflows/ports_unix.yml @@ -190,7 +190,9 @@ jobs: runs-on: macos-11.0 steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 + with: + python-version: '3.8' - name: Build run: source tools/ci.sh && ci_unix_macos_build - name: Run tests