Skip to content

Commit

Permalink
Revert to macos-latest as missing Python versions were added back
Browse files Browse the repository at this point in the history
As described in actions/runner-images#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`.
  • Loading branch information
fjwillemsen committed May 17, 2024
1 parent dae9e8e commit 8df345b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8df345b

Please sign in to comment.