From 8994896494a72ee4d7abc06e8f0ec371ed77b560 Mon Sep 17 00:00:00 2001 From: kitsuyui Date: Sun, 14 Jul 2024 02:44:21 +0900 Subject: [PATCH] Update CI macOS version https://github.com/actions/runner-images/issues/9255 - macOS 11 is removed - macOS 14 is added --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b3053d..e593d55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: test_installation: strategy: matrix: - macos: [macos-11, macos-12, macos-13] + macos: [macos-12, macos-13, macos-14] runs-on: ${{ matrix.macos }} steps: - name: Checkout @@ -18,7 +18,7 @@ jobs: - name: Checkout branch run: | - cd /usr/local/Homebrew/Library/Taps/kitsuyui/homebrew-myip + cd "$(brew --prefix)"/Library/Taps/kitsuyui/homebrew-myip git checkout ${{ github.head_ref }} if: ${{ github.head_ref != 'main' }}