From ffb9fb378ceca44d960a4b093e29798077384033 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 5 Apr 2023 20:21:23 +0200 Subject: [PATCH] Change runners to use Ubuntu 20.04 Seems like GitHub finally pulled the plug out of 18.04. --- .github/workflows/build.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d56aef1..9a839f91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: include: - - { name: ubuntu-18.04, os: ubuntu-18.04, cross-target: '' } + - { name: ubuntu-20.04, os: ubuntu-20.04, cross-target: '' } - { name: macos-universal, os: macos-11, cross-target: aarch64-apple-darwin } - { name: windows, os: windows-latest, cross-target: '' } name: Package plugin binaries diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3f8bd9a2..6b1590e8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ defaults: jobs: docs: name: Generate and upload docs - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 # Needed for git-describe to do anything useful diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d43d435c..22e3cee7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: test: strategy: matrix: - os: [ubuntu-18.04, macos-11, windows-latest] + os: [ubuntu-20.04, macos-11, windows-latest] name: Build and test all components runs-on: ${{ matrix.os }} steps: