diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-10-17 19:40:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 19:40:54 +0200 |
commit | be43cf16cc677cf50f31cbbf75bc028ce36b8921 (patch) | |
tree | 4c7840f366525bd2457e5ccbf72f89f2d3a7f779 | |
parent | e4273135455084bca54a484f88fd364af62bf69c (diff) | |
download | rneovim-be43cf16cc677cf50f31cbbf75bc028ce36b8921.tar.gz rneovim-be43cf16cc677cf50f31cbbf75bc028ce36b8921.tar.bz2 rneovim-be43cf16cc677cf50f31cbbf75bc028ce36b8921.zip |
ci: bump ubuntu and macos to latest stable versions (#20479)
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4731e2b32..7ada4f3f9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ concurrency: jobs: lint: if: (github.event_name == 'pull_request' && github.base_ref == 'master') || (github.event_name == 'push' && github.ref == 'refs/heads/master') - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 10 env: CC: gcc @@ -142,7 +142,7 @@ jobs: # of the bundled dependencies. if: (github.event_name == 'pull_request' && github.base_ref == 'master') || (github.event_name == 'push' && github.ref == 'refs/heads/master') - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 10 env: CC: gcc @@ -214,18 +214,18 @@ jobs: include: - flavor: asan cc: clang-13 - runner: ubuntu-20.04 + runner: ubuntu-22.04 os: linux - flavor: tsan cc: clang-13 - runner: ubuntu-20.04 + runner: ubuntu-22.04 os: linux - flavor: uchar cc: gcc - runner: ubuntu-20.04 + runner: ubuntu-22.04 os: linux - cc: clang - runner: macos-11 + runner: macos-12 os: osx # functionaltest-lua is our dumping ground for non-mainline configurations. @@ -236,7 +236,7 @@ jobs: # 3. No treesitter parsers installed. - flavor: functionaltest-lua cc: gcc - runner: ubuntu-20.04 + runner: ubuntu-22.04 os: linux cmake: minimum_required runs-on: ${{ matrix.runner }} |