Update macOS version

During CI, the following diagnostic is shown:
> The macOS virtual environment has been updated to Catalina (v10.15). Please
> update your workflow and change the line 'runs-on: macOS-10.14' to 'runs-on:
> macOS-latest'

The advice seems dubious, since it will then automatically update to some other
macos version without warning, but follow it anyway.
This commit is contained in:
Jeff Epler 2021-07-23 09:27:23 -05:00
parent ecf579ecb3
commit f64d2760d6

View file

@ -20,7 +20,7 @@ jobs:
matrix: matrix:
os: os:
- ubuntu-16.04 - ubuntu-16.04
- macos-10.14 - macOS-latest
dims: [1, 2, 3, 4] dims: [1, 2, 3, 4]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
@ -54,7 +54,7 @@ jobs:
matrix: matrix:
os: os:
- ubuntu-20.04 - ubuntu-20.04
- macos-10.14 - macOS-latest
dims: [1, 2, 3, 4] dims: [1, 2, 3, 4]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps: