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:
Lars-Peter Clausen 2022-09-16 17:32:42 +02:00
parent 62b1f44104
commit d6912fb504
1 changed files with 2 additions and 6 deletions

View File

@ -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