diff options
author | James McCoy <jamessan@jamessan.com> | 2021-05-02 16:27:27 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-05-02 16:27:37 -0400 |
commit | 14c692bc822f9baf98bea9a8522d7cadcf1166e8 (patch) | |
tree | 077b7c53c2564c04e219d3f8824ab5ecdec11632 | |
parent | cfaf666ac9e1020f75dddb66027e36ad5fed0c86 (diff) | |
download | rneovim-14c692bc822f9baf98bea9a8522d7cadcf1166e8.tar.gz rneovim-14c692bc822f9baf98bea9a8522d7cadcf1166e8.tar.bz2 rneovim-14c692bc822f9baf98bea9a8522d7cadcf1166e8.zip |
ci(gha/release): Bump to ubuntu-18.04
Per https://wiki.ubuntu.com/Releases, 16.04 is no longer under standard
support. Switch to the next LTS, 18.04, for the next couple years.
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5064760d2..a94b3d0a87 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ on: # Build on the oldest supported images, so we have broader compatibility jobs: linux: - runs-on: ubuntu-16.04 + runs-on: ubuntu-18.04 outputs: version: ${{ steps.build.outputs.version }} release: ${{ steps.build.outputs.release }} @@ -43,7 +43,7 @@ jobs: retention-days: 1 appimage: - runs-on: ubuntu-16.04 + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 with: |