diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-19 12:22:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-19 12:22:55 +0300 |
commit | 13888629d461c5c2faebd783ca8e847e606450e0 (patch) | |
tree | 8e7c32c65ba09acf4380f6396a5a852d94936ae0 /.github/workflows/ci_github.yml | |
parent | workflows/basic: test w/ latest Python (diff) | |
download | cmake-common-13888629d461c5c2faebd783ca8e847e606450e0.tar.gz cmake-common-13888629d461c5c2faebd783ca8e847e606450e0.zip |
workflows: use -latest images where appropriate
Diffstat (limited to '.github/workflows/ci_github.yml')
-rw-r--r-- | .github/workflows/ci_github.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci_github.yml b/.github/workflows/ci_github.yml index b01d041..ae35e4d 100644 --- a/.github/workflows/ci_github.yml +++ b/.github/workflows/ci_github.yml @@ -12,13 +12,13 @@ jobs: build: strategy: matrix: - os: [ubuntu-20.04, windows-2019] + os: [ubuntu-latest, windows-latest] toolset: [gcc, clang, msvc] configuration: [Debug, Release] exclude: - - {os: ubuntu-20.04, toolset: msvc} - - {os: windows-2019, toolset: gcc} - - {os: windows-2019, toolset: clang} + - {os: ubuntu-latest, toolset: msvc} + - {os: windows-latest, toolset: gcc} + - {os: windows-latest, toolset: clang} runs-on: '${{ matrix.os }}' name: '${{ matrix.os }} / ${{ matrix.toolset }} / ${{ matrix.configuration }}' defaults: |