diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-08-09 17:05:56 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2022-08-09 18:10:18 +0200 |
commit | 48241c3b238e0cf5b4b5af61db4e54f2b8c02897 (patch) | |
tree | 62b807aab44eb0e21c8f2ca1a73d3ce68fa3d2dc | |
parent | 24bf0490ea3a16c14494358fe45437e43ca8d1d1 (diff) | |
download | rneovim-48241c3b238e0cf5b4b5af61db4e54f2b8c02897.tar.gz rneovim-48241c3b238e0cf5b4b5af61db4e54f2b8c02897.tar.bz2 rneovim-48241c3b238e0cf5b4b5af61db4e54f2b8c02897.zip |
ci(release): bump deprecated ubuntu image to 20.04
`ubuntu-18.04` is now deprecated and subject to outages, see
https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/
-rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cab57add52..cbb7bf64b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ on: # Upgrade to gcc-11 to prevent it from using its builtins (#14150) jobs: linux: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 outputs: version: ${{ steps.build.outputs.version }} release: ${{ steps.build.outputs.release }} @@ -50,7 +50,7 @@ jobs: retention-days: 1 appimage: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 with: @@ -150,7 +150,7 @@ jobs: publish: needs: [linux, appimage, macOS, windows] - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: GH_REPO: ${{ github.repository }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |