From d8bc1ca9af7957ce4d4db99a52c701ac75db7688 Mon Sep 17 00:00:00 2001 From: Sung Yun <107272191+syun64@users.noreply.github.com> Date: Fri, 19 Jul 2024 23:15:06 -0400 Subject: [PATCH] Remove macos-11 (#946) macos-11 is no longer a supported runner: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources --- .github/workflows/python-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 5904008ad5..c856e5ec7a 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -34,7 +34,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-22.04, windows-2022, macos-11, macos-12, macos-13, macos-14 ] + os: [ ubuntu-22.04, windows-2022, macos-12, macos-13, macos-14 ] steps: - uses: actions/checkout@v4