From 9ed3898486795fe102d2486f3ef70d372a065bbd Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 19 Aug 2025 11:00:16 +0900 Subject: [PATCH] Exclude old Ruby versions with macos-latest --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 25993b8..df8a628 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,11 @@ jobs: matrix: ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} os: [ ubuntu-latest, macos-latest ] + exclude: + - ruby: 2.4 + os: macos-latest + - ruby: 2.5 + os: macos-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4