From 7096371bde1a78399dae87b3e1de3329312d8478 Mon Sep 17 00:00:00 2001 From: Violeta Georgieva Date: Mon, 7 Oct 2024 08:51:17 +0300 Subject: [PATCH] [build] Switch from macOS-12 to macOS-13 macOS-12 is deprecated and will be removed https://github.com/actions/runner-images/issues/10721 --- .github/workflows/check_graalvm.yml | 2 +- .github/workflows/check_netty_snapshots.yml | 4 ++-- .github/workflows/check_transport.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check_graalvm.yml b/.github/workflows/check_graalvm.yml index 4ef29c103..b524e14bf 100644 --- a/.github/workflows/check_graalvm.yml +++ b/.github/workflows/check_graalvm.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-12, windows-2022] + os: [ubuntu-20.04, macos-13, windows-2022] transport: [native, nio] exclude: # excludes native on Windows (there's none) diff --git a/.github/workflows/check_netty_snapshots.yml b/.github/workflows/check_netty_snapshots.yml index e2d6879d6..d81e76c3e 100644 --- a/.github/workflows/check_netty_snapshots.yml +++ b/.github/workflows/check_netty_snapshots.yml @@ -11,14 +11,14 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-12, windows-2019] + os: [ubuntu-20.04, macos-13, windows-2019] transport: [native, nio] exclude: # excludes native on Windows (there's none) - os: windows-2019 transport: native # macOS - https://github.com/netty/netty/issues/9689 - - os: macos-12 + - os: macos-13 transport: native steps: diff --git a/.github/workflows/check_transport.yml b/.github/workflows/check_transport.yml index 253b88be6..ac1dea253 100644 --- a/.github/workflows/check_transport.yml +++ b/.github/workflows/check_transport.yml @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-12, windows-2019] + os: [ubuntu-20.04, macos-13, windows-2019] transport: [native, nio] exclude: # excludes native on Windows (there's none)