From d4d33db842272ef4d6ac0f68f5209c7147b1fb80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 9 Jun 2026 08:17:44 -0700 Subject: [PATCH] Pin Windows CI to windows-2022 runner windows-latest was repointed to a VS2026 toolset whose newer MSVC promotes a GSL [[gsl::suppress]] deprecation (C4875) to an error under /WX, breaking the Win32 and UWP builds. Pin those jobs to windows-2022 so the established VS2022 toolset is used, restoring green CI without a dependency or source change. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/build-uwp.yml | 2 +- .github/workflows/build-win32.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-uwp.yml b/.github/workflows/build-uwp.yml index c07157a2..9a179079 100644 --- a/.github/workflows/build-uwp.yml +++ b/.github/workflows/build-uwp.yml @@ -12,7 +12,7 @@ on: jobs: build: - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 15 steps: - uses: actions/checkout@v5 diff --git a/.github/workflows/build-win32.yml b/.github/workflows/build-win32.yml index 4fa03e85..c8118d0b 100644 --- a/.github/workflows/build-win32.yml +++ b/.github/workflows/build-win32.yml @@ -12,7 +12,7 @@ on: jobs: build: - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 15 steps: - uses: actions/checkout@v5