diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:58:49 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:58:49 +0300 |
commit | 3c72d0e4cf5bbe842b41610f010132d209a0afa0 (patch) | |
tree | b721e8a1b9f831748430ee774d10405d1708da50 | |
parent | add .clang-tidy & `make check` (diff) | |
download | winapi-utf8-3c72d0e4cf5bbe842b41610f010132d209a0afa0.tar.gz winapi-utf8-3c72d0e4cf5bbe842b41610f010132d209a0afa0.zip |
workflows/ci: use ubuntu-latest
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d84ed91..0e1222c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: jobs: lint: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: Linting if: github.ref == 'refs/heads/master' steps: @@ -30,7 +30,7 @@ jobs: include: # MinGW builds are done on Linux, since it's more up-to-date there, and # it's much faster. - - {toolset: mingw, os: ubuntu-20.04} + - {toolset: mingw, os: ubuntu-latest} - {toolset: vs2015, os: windows-2016} - {toolset: vs2017, os: windows-2016} - {toolset: vs2019, os: windows-2019} |