From f6b10c435e98a474229f24aee134a6e6c0cbfb48 Mon Sep 17 00:00:00 2001 From: Yasushi SHOJI Date: Thu, 11 May 2023 22:56:35 +0900 Subject: [PATCH] .github: workflows: Update Ubuntu version ubuntu-18.04 has been removed for some time. We now have 20.04 and 22.04. Update the OS matrix. ref: 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: Yasushi SHOJI --- .github/workflows/build-test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2e56957db..f1405893b 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -6,8 +6,8 @@ jobs: fail-fast: false matrix: os: - - ubuntu-latest - - ubuntu-18.04 + - ubuntu-22.04 + - ubuntu-20.04 #- macos-latest arch: - posix @@ -15,9 +15,6 @@ jobs: - meson - cmake - waf - exclude: - - os: ubuntu-18.04 - buildsystem: meson runs-on: ${{ matrix.os }} steps: - name: Setup packages on Linux