From b5c52e337e575be5e0db2cdb61b8b9044f5344b6 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 15 Mar 2022 15:53:48 -0400 Subject: [PATCH] build: pin Windows GitHub runner to windows-2019 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Node.js 14 currently doesn't support building with Visual Studio 2022. For now, pin the Windows workflow to run on `windows-2019` instead of `windows-latest`. PR-URL: https://github.com/nodejs/node/pull/42350 Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen Reviewed-By: Antoine du Hamel --- .github/workflows/build-windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index e30274c47ad033..961bc41e394631 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -17,7 +17,7 @@ env: jobs: build-windows: - runs-on: windows-latest + runs-on: windows-2019 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ env.PYTHON_VERSION }}