From 6f915e388b44086b50294f144d783e8590097f1c Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sat, 17 Sep 2022 13:19:09 -0400 Subject: [PATCH] Update Ubuntu versions used in GitHub Actions * Ubuntu 16.04 was removed on Sep 20, 2021, as per https://github.com/actions/runner-images/issues/3287 * Currently-available versions are 18.04 (deprecated), 20.04, and 22.04 as per https://github.com/actions/runner-images#available-images Added a comment pointing to the list of currently-available Ubuntu versions in a comment in the workflow config to make it easire to find the full list and update it in the future. --- .github/workflows/ubuntu.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index f8f9e6dc1..0cf7f9e30 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -8,7 +8,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-16.04, ubuntu-18.04, ubuntu-latest] + # https://github.com/actions/runner-images#available-images + os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04] steps: - uses: actions/checkout@v1