From 55cc87a6f861792a16ebd630a53fcf2c875ac918 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Fri, 14 Jun 2024 19:55:29 -0700 Subject: [PATCH] ci: Use setup-python action on macOS --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de22b00c2b2..c0f520ad218 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -271,6 +271,9 @@ jobs: name: src.tar.gz - name: Extract source package run: tar xf src.tar.gz + - uses: actions/setup-python@v5.1.0 + with: + python-version: '3.12' - name: Install dependencies run: | export HOMEBREW_NO_AUTO_UPDATE=1 @@ -281,7 +284,7 @@ jobs: dylibbundler \ pkg-config \ ninja - python3 -m pip install pyyaml requests + pip install pyyaml requests - name: Initialize compiler, library cache id: cache uses: actions/cache@v4