From 8df345b9fe749d1c44cc087d5ce0689ad4881311 Mon Sep 17 00:00:00 2001 From: Floris-Jan Willemsen Date: Fri, 17 May 2024 11:52:41 +0200 Subject: [PATCH] Revert to `macos-latest` as missing Python versions were added back As described in https://github.com/actions/runner-images/issues/9770, `macos-latest` was missing cached Python versions 3.9 and 3.10, forcing temporary use of `macos-13`. As the Python versions have been added, we can again use `macos-latest`. --- .github/workflows/test-python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-python-package.yml b/.github/workflows/test-python-package.yml index e2dac9687..e4ed81c8a 100644 --- a/.github/workflows/test-python-package.yml +++ b/.github/workflows/test-python-package.yml @@ -17,11 +17,11 @@ on: jobs: build: name: Test on ${{ matrix.os }} with all supported Python versions - runs-on: ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov + runs-on: ${{ format('{0}-latest', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov strategy: matrix: - os: [ubuntu-latest, macos-13] + os: [ubuntu, macos] steps: - uses: actions/checkout@v4