From e1c3d1180333d93684451f8a8cd0f50bd99145b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Wed, 17 Aug 2022 10:14: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-test-publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 53cc47bcb..b18292156 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -130,9 +130,9 @@ jobs: strategy: max-parallel: 3 matrix: - os: [ubuntu-18.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-10.15] include: - - os: ubuntu-18.04 + - os: ubuntu-20.04 c-compiler: "gcc" cxx-compiler: "g++" cmake-build-type: "MinSizeRel" @@ -229,7 +229,7 @@ jobs: strategy: max-parallel: 3 matrix: - os: [ubuntu-18.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-10.15] steps: - uses: actions/checkout@v1 @@ -254,9 +254,9 @@ jobs: strategy: max-parallel: 3 matrix: - os: [ubuntu-18.04] + os: [ubuntu-20.04] include: - - os: ubuntu-18.04 + - os: ubuntu-20.04 c-compiler: "gcc" cxx-compiler: "g++" cmake-build-type: "Release"