From b7d386c8ee2eedc6524b74aa757ce9446b62d72b Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Tue, 2 Jul 2024 06:16:09 +0200 Subject: [PATCH 1/2] fix(gha): bump macos runner version Seems that `macos-11` has been deprecated since [June 28th 2024](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories) --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5f29c12..ac2d133 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,11 +16,11 @@ jobs: fail-fast: false matrix: os: - - ["windows", "windows-latest"] - - ["macos", "macos-11"] + - ["windows", "windows-latest"] + - ["macos", "macos-12"] config: - # [Python version, tox env] - - ["3.9", "test"] + # [Python version, tox env] + - ["3.9", "test"] runs-on: ${{ matrix.os[1] }} name: ${{ matrix.os[0] }}-${{ matrix.config[1] }} From 96083395ce2f314c18ddc2ffa559bc5d193f7b6a Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Tue, 2 Jul 2024 06:19:01 +0200 Subject: [PATCH 2/2] Add news entry --- news/+ignore.tests | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/+ignore.tests diff --git a/news/+ignore.tests b/news/+ignore.tests new file mode 100644 index 0000000..69144e2 --- /dev/null +++ b/news/+ignore.tests @@ -0,0 +1 @@ +Bump `macos` GHA runner version, `11` has been deprecated [@gforcada]