diff options
author | James McCoy <jamessan@jamessan.com> | 2022-05-28 13:41:48 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2022-05-28 14:22:42 -0400 |
commit | a3df012845cadf7a01d92171c2829ef7ca5135d7 (patch) | |
tree | 6965b6e35ffa76a354c3467ff53331f5ad6b9559 | |
parent | f914b4e7a864bb67c26765c02d6ab10346d2135a (diff) | |
download | rneovim-a3df012845cadf7a01d92171c2829ef7ca5135d7.tar.gz rneovim-a3df012845cadf7a01d92171c2829ef7ca5135d7.tar.bz2 rneovim-a3df012845cadf7a01d92171c2829ef7ca5135d7.zip |
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.
-rw-r--r-- | .github/workflows/coverity-scan.yml | 2 | ||||
-rw-r--r-- | .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 |