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:
parent
ecf579ecb3
commit
f64d2760d6
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue