ci: use certain OS version instead of latest

macos-latest to macos-10.15
windows-latest to windows-2019

https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
This commit is contained in:
Shohei Ueda 2020-10-23 23:24:56 +09:00 committed by GitHub
parent 4c8cffc919
commit 5ea6b89575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,8 @@ jobs:
- 'ubuntu-20.04'
- 'ubuntu-18.04'
- 'ubuntu-16.04'
- 'macos-latest'
- 'windows-latest'
- 'macos-10.15' # macos-latest
- 'windows-2019' # windows-latest
steps:
- uses: actions/checkout@v2.3.1