From d8fd60b5625e188720a4e0e10b3ccfaf59cef0e2 Mon Sep 17 00:00:00 2001 From: peace-maker Date: Tue, 28 Mar 2023 13:50:19 +0200 Subject: [PATCH] Update clang-8 CI run to Ubuntu 20.04 (#1960) The Ubuntu 18.04 runner image is deprecated and will be unsupported on 2023/04/01. It appears Ubuntu 20.04 has a package for clang-8, so just do the switch. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0af4471a..d222cdaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: test: strategy: matrix: - os: [ubuntu-18.04, ubuntu-latest, windows-latest] + os: [ubuntu-20.04, ubuntu-latest, windows-latest] include: - os: windows-latest os_short: win @@ -21,7 +21,7 @@ jobs: os_short: linux compiler_cc: clang compiler_cxx: clang++ - - os: ubuntu-18.04 + - os: ubuntu-20.04 os_short: linux compiler_cc: clang-8 compiler_cxx: clang++-8