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:
|
mac:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
runs-on: macos-latest
|
||||||
os: [
|
name: '🍏 macOS'
|
||||||
'10.15'
|
|
||||||
]
|
|
||||||
runs-on: macos-${{ matrix.os }}
|
|
||||||
name: '🍏 macos ${{ matrix.os }}'
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue