Skip to content

Commit

Permalink
Drop unsupported GitHub Actions runners
Browse files Browse the repository at this point in the history
* GitHub Actions dropped suuport for macos-10.15 on 2022-12-01:
  actions/runner-images#6002
* GitHub Actions dropped suuport for ubuntu-18.04 on 2023-04-03:
  actions/runner-images#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.
  • Loading branch information
nevans committed Sep 3, 2024
1 parent 4237412 commit aae1780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit aae1780

Please sign in to comment.