From 477cef920a5541a12760eab2f7c243f4d643dd8f Mon Sep 17 00:00:00 2001 From: Baoshuo Ren Date: Mon, 25 Jul 2022 14:45:05 +0800 Subject: [PATCH] chore: bump macos runner version GitHub Action is sunsetting the macOS 10.15 Actions runner. It will stop working intermittently until being completely removed by 2022-8-30: https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22 --- .github/workflows/unittest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 1a2b093..8ca708b 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -18,7 +18,7 @@ jobs: max-parallel: 4 matrix: python-version: [2.7, 3.6, 3.7, 3.8, 3.9] - os: [ubuntu-latest, windows-2019, macos-10.15] + os: [ubuntu-latest, windows-2019, macos-11] steps: - uses: actions/checkout@v2