From 9cd80a6911d096cb8f4431f4e60069e536e14862 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 30 Apr 2024 16:09:10 +0900 Subject: [PATCH] Exclude 2.4-2.5 on 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 893125c..24e2ccb 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: + - os: macos-latest + ruby: 2.4 + - os: macos-latest + ruby: 2.5 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4.1.3