From 154b562d195d5a7474c28db313854500540db349 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 22 May 2026 22:27:10 -0400 Subject: [PATCH] ci: Pin CI runner to windows-2022 Update the GitHub Actions workflow to use runs-on: windows-2022 for the build job. The WDK driver build is validated against Visual Studio 2022 and windows-latest is moving to VS 2026, so pinning to windows-2022 prevents unexpected toolchain changes; added an inline comment explaining this. --- .github/workflows/ci-validation.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-validation.yml b/.github/workflows/ci-validation.yml index 38a5546..0be0eaf 100644 --- a/.github/workflows/ci-validation.yml +++ b/.github/workflows/ci-validation.yml @@ -24,7 +24,8 @@ permissions: jobs: build: - runs-on: windows-latest + # The WDK driver build is validated against VS 2022; windows-latest is moving to VS 2026. + runs-on: windows-2022 strategy: fail-fast: false matrix: