From 17508cfe3002951fcfdbcb821936e737029c1add Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 8 Dec 2025 18:51:01 +0300 Subject: [PATCH 1/2] workflows: update to windows-latest runner for tests Follow https://github.com/nspcc-dev/.github/blob/6c4dff04862ad947805e82fb9b664899906c6305/gh.md. Signed-off-by: Roman Khimov --- .github/workflows/run_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index b58f51f..0c12122 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -44,12 +44,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-latest, windows-2022, macos-14 ] + os: [ ubuntu-latest, windows-latest, macos-14 ] go_versions: [ '1.24', '1.25' ] exclude: - os: macos-14 go_versions: '1.24' - - os: windows-2022 + - os: windows-latest go_versions: '1.24' - os: ubuntu-latest go_versions: '1.25' From ce66061039f1601e7623668a0492da87fcf51283 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 8 Dec 2025 18:51:50 +0300 Subject: [PATCH 2/2] workflows: use macos-latest runner Follow https://github.com/nspcc-dev/.github/blob/6c4dff04862ad947805e82fb9b664899906c6305/gh.md Signed-off-by: Roman Khimov --- .github/workflows/run_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 0c12122..4d40beb 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -44,10 +44,10 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-14 ] + os: [ ubuntu-latest, windows-latest, macos-latest ] go_versions: [ '1.24', '1.25' ] exclude: - - os: macos-14 + - os: macos-latest go_versions: '1.24' - os: windows-latest go_versions: '1.24'