From e3e5bf11ba9eb4c2250765f873377fc22ae7f4ab Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 15 Mar 2022 14:12:13 -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 GitHub is removing the Windows 2016 runner image on March 15, 2022. Refs: https://github.blog/changelog/2021-10-19-github-actions-the-windows-2016-runner-image-will-be-removed-from-github-hosted-runners-on-march-15-2022/ PR-URL: https://github.com/nodejs/node/pull/42349 Reviewed-By: Mestery Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen Reviewed-By: Michaël Zasso 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 7d7a8167308960..72935f862aa0a6 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -8,7 +8,7 @@ env: jobs: build-windows: - runs-on: windows-2016 + runs-on: windows-2019 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ env.PYTHON_VERSION }}