From 215994e274aea97ab4eafbc638e6540e24ea838c Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 8 Dec 2025 18:49:24 +0300 Subject: [PATCH 1/2] workflows: use the latest Windows runner Follow https://github.com/nspcc-dev/.github/blob/6c4dff04862ad947805e82fb9b664899906c6305/gh.md Signed-off-by: Roman Khimov --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index dbf0030..54be171 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,11 +18,11 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-2022, macos-14] + os: [ubuntu-latest, windows-latest, macos-14] go: [ '1.24', '1.25' ] exclude: # Only latest Go version for Windows and MacOS. - - os: windows-2022 + - os: windows-latest go: '1.24' - os: macos-14 go: '1.24' From 86b21952eab7917735c2dbbfc7756350093e88f0 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 8 Dec 2025 18:49:53 +0300 Subject: [PATCH 2/2] workflows: use macos-latest for tests Follow https://github.com/nspcc-dev/.github/blob/6c4dff04862ad947805e82fb9b664899906c6305/gh.md Signed-off-by: Roman Khimov --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 54be171..d6bb132 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,13 +18,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-14] + os: [ubuntu-latest, windows-latest, macos-latest] go: [ '1.24', '1.25' ] exclude: # Only latest Go version for Windows and MacOS. - os: windows-latest go: '1.24' - - os: macos-14 + - os: macos-latest go: '1.24' # Exclude latest Go version for Ubuntu as Coverage uses it. - os: ubuntu-latest