ci: Upgrade macOS runner
Github had deprecated MacOS 10.15 runner[1] and it has now been removed and the corresponding test always fails. Similar to the Windows runner use the `latest` version to auto-upgrade the environment to a supported version. [1] https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22/ Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
This commit is contained in:
parent
62b1f44104
commit
d6912fb504
|
|
@ -13,12 +13,8 @@ jobs:
|
|||
mac:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [
|
||||
'10.15'
|
||||
]
|
||||
runs-on: macos-${{ matrix.os }}
|
||||
name: '🍏 macos ${{ matrix.os }}'
|
||||
runs-on: macos-latest
|
||||
name: '🍏 macOS'
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
|
|
|
|||
Loading…
Reference in New Issue