From 73ad825b67c4ab74f28e42a75782c1c49ba33a88 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sat, 13 Nov 2021 19:37:56 +0100 Subject: [PATCH] ci: update Windows runner to windows-2019 The windows-2016 runner will soon be removed: 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/ Therefore, switch to the next version. --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4c1f8dd9..49cd86e9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -9,7 +9,7 @@ on: jobs: build-windows: - runs-on: windows-2016 + runs-on: windows-2019 steps: - name: Install Go uses: actions/setup-go@v2