From aae1780fc5777de941fbf56ec2053e7740e3339d Mon Sep 17 00:00:00 2001 From: nick evans Date: Tue, 3 Sep 2024 09:35:40 -0400 Subject: [PATCH] Drop unsupported GitHub Actions runners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * GitHub Actions dropped suuport for macos-10.15 on 2022-12-01: https://github.com/actions/runner-images/issues/6002 * GitHub Actions dropped suuport for ubuntu-18.04 on 2023-04-03: https://github.com/actions/runner-images/issues/5583 Although there are benefits to testing EventMachine with these older OS versions—especially given EventMachine's legacy status and the types of projects which are most likely to depend on it—there are also significant costs to maintaining CI for them once GitHub Actions has dropped support. --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index b498c7fe..e2488c81 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-20.04, ubuntu-18.04, macos-10.15, windows-2019 ] + os: [ ubuntu-20.04, windows-2019 ] ruby: [ '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', head ] include: - { os: windows-2019, ruby: mingw }