From 6215f38850ec63428ac107f8963c5e3271ba4586 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Tue, 5 Nov 2024 15:23:29 +0300 Subject: [PATCH] workflows: drop macos-12 runner GitHub will soon remove it completely: https://github.com/actions/runner-images/issues/10721 Signed-off-by: Roman Khimov --- .github/workflows/go.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index bfdaec1..0c53dcf 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,14 +19,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04, windows-2022, macos-12, macos-14] + os: [ubuntu-22.04, windows-2022, macos-14] go: [ '1.22', '1.23' ] exclude: # Only latest Go version for Windows and MacOS. - os: windows-2022 go: '1.22' - - os: macos-12 - go: '1.22' - os: macos-14 go: '1.22' # Exclude latest Go version for Ubuntu as Coverage uses it.