From 08124c8577aa2404a773a795263b526afddf0013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Wed, 17 Aug 2022 10:28:48 -0400 Subject: [PATCH] ENH: Switch Github Actions Linux environment Switch Github Actions Linux environment version to `ubuntu-20.04`. `ubuntu-18.04` is being deprecated and support will end by 12/1/2022: https://github.com/actions/virtual-environments/issues/6002 Related to recent warnings in the Azure Pipelines Linux environment being used in the main ITK repository: https://github.com/InsightSoftwareConsortium/ITK/pull/3554/commits/497c3a7b8e1397ca56a2675ce846dca657af8861 --- .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 7038d08d..28784430 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ env: jobs: build-publish-pdf: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2