From bbba79f98f1c3dcfe9c06e29095b3aff9de8f33d Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 27 Sep 2021 01:52:00 -0700 Subject: [PATCH] Bump Linux runner version for build workflow Previously, the `ubuntu-16.04` runner was used for the Linux 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 Ubuntu that is now available as a GitHub-hosted runner: `ubuntu-18.04`. The reason for using the oldest available Ubuntu version is to provide compatibility with the widest possible range of Linux 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 71507b9..a8ff025 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: config: - - os: ubuntu-16.04 + - os: ubuntu-18.04 ExecutableSuffix: '' Exports: '' - os: macos-latest