From 7331b6e0b0395f256882c24ff647b6c3a73c3efe Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 6 May 2024 21:46:21 +0200 Subject: [PATCH] CI/Testing: Use macOS 13 on GHA macos-14 aka. macos-latest has switched to being an ARM runner. In turn, this one only supports higher versions of Python than currently designated. Thus, switching to a compatible runner, macos-13. --- .github/workflows/testing-native-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing-native-python.yml b/.github/workflows/testing-native-python.yml index 65968c7c..64e5b6cb 100644 --- a/.github/workflows/testing-native-python.yml +++ b/.github/workflows/testing-native-python.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ 'ubuntu-latest', 'macos-latest' ] + os: [ 'ubuntu-latest', 'macos-13' ] python-version: [ '3.7', '3.12' ] cratedb-version: [ 'nightly' ]