From d4cc63394ab27adcf0573f0c39aa544494a35993 Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Sat, 19 Mar 2022 21:00:08 +0530 Subject: [PATCH] build: run Windows CI only on nondeprecated build configurations The windows-2016 runner has been deprecated on March 15, 2022. That is why those runs are getting cancelled recently. This change fixes the issue by removing that runner from the config. 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 Signed-off-by: Darshan Sen --- .github/workflows/ci-win.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index c72787539..7ec7760a9 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -10,7 +10,6 @@ jobs: node-version: [10.x, 12.x, 14.x, 15.x, 16.x] os: - windows-2019 - - windows-2016 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2