From 1d94f837aa2ad4adc2fa8102959286ec8812b315 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 8 Dec 2025 18:38:36 +0300 Subject: [PATCH 1/2] workflows: use the latest Windows version We don't care much about specific one, 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 783e107..ffb9661 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -46,12 +46,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 105985ba0c5b98c30bc82b001b971b050c6cb418 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 8 Dec 2025 18:39:16 +0300 Subject: [PATCH 2/2] workflows: use macos-latest instead of macos-14 ARM64-based MacOS 15 works fine for us. 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 ffb9661..aaa2ee0 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -46,10 +46,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'