From c4a5f97ba1bafdb12f818312d838e30452124b8f Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Wed, 22 Jan 2025 17:32:51 +0900 Subject: [PATCH] Exclude 2.4-2.5 on macos-latest(=macos-14) iamge --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c298e14..9652275 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