From 66f65179e5e2aefed931b80848442a939b17003f Mon Sep 17 00:00:00 2001 From: Jimver Date: Thu, 6 Jul 2023 23:52:32 +0200 Subject: [PATCH] Remove ubuntu 18.04 from CI - Ubuntu 18.04 hasn't been supported in GitHub actions for a while now. 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/ - So let's remove it. --- .github/workflows/CI.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ca219d87..357fa77a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,8 +20,7 @@ jobs: strategy: fail-fast: false matrix: - os: - [windows-2022, windows-2019, ubuntu-22.04, ubuntu-20.04, ubuntu-18.04] + os: [windows-2022, windows-2019, ubuntu-22.04, ubuntu-20.04] method: [local, network] runs-on: ${{ matrix.os }}