From a3df012845cadf7a01d92171c2829ef7ca5135d7 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sat, 28 May 2022 13:41:48 -0400 Subject: ci: use ubuntu-latest for vim-patches and coverity-scan Since we're not running tests or other things that are more sensitive to changes in the VM environment, use ubuntu-latest to avoid the busy work of updating the VM image. --- .github/workflows/coverity-scan.yml | 2 +- .github/workflows/vim-patches.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index 064da54456..ce7822b5c1 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -6,7 +6,7 @@ on: jobs: scan: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/vim-patches.yml b/.github/workflows/vim-patches.yml index 45e6b81aed..df8c8116b5 100644 --- a/.github/workflows/vim-patches.yml +++ b/.github/workflows/vim-patches.yml @@ -5,7 +5,7 @@ on: jobs: update-vim-patches: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest permissions: contents: write pull-requests: write -- cgit