From 46bd823a4e71d7f5b7098e1fc54f923ac76a2e17 Mon Sep 17 00:00:00 2001 From: Matteo Pologruto Date: Wed, 3 Aug 2022 16:07:48 +0200 Subject: [PATCH] Bump Windows runner version for build workflow Previously, the 'windows-2016' runner was used for the Windows job used to build and test the application in the build GitHub Actions workflow. That runner has now been removed by GitHub. In its place, we will use the runner with the oldest version of Windows that is now available as a GitHub-hosted runner: 'windows-2019'. The reason for using the oldest available Windows version is to provide compatibility with the widest possible range of Windows versions for the users of the Arduino Language Server. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ce01bc..d5cfd25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: - os: macos-latest ExecutableSuffix: '' Exports: 'CGO_ENABLED=1 MACOSX_DEPLOYMENT_TARGET=10.14 ' - - os: windows-2016 + - os: windows-2019 ExecutableSuffix: '.exe' Exports: '' runs-on: ${{ matrix.config.os }}