From f253655e25a0585aab1c2d616d241214eba0269a Mon Sep 17 00:00:00 2001 From: Lars-Peter Clausen Date: Sat, 10 Sep 2022 19:36:32 +0200 Subject: [PATCH] ci: Remove the Ubuntu 18.04 runner Github has announced[1] that it is going to remove support for the Ubuntu 18.04 runner. It will start introducing temporary failures at increasing frequency in October 22 and completely remove support for it in April 23. To avoid CI failing remove the Ubuntu 18.04 runner and add the 22.04 runner instead. [1] 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/ Signed-off-by: Lars-Peter Clausen --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 480b33166..8bd2ef10b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,8 +44,8 @@ jobs: fail-fast: false matrix: os: [ - '18.04', - '20.04' + '20.04', + '22.04' ] runs-on: ubuntu-${{ matrix.os }} name: '🐧 Ubuntu ${{ matrix.os }}'