From 3a6d89ae52da4ba770a9d749eb88444257d56394 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Wed, 30 Nov 2022 10:25:57 -0800 Subject: [PATCH] Retire Ubuntu 18.04 CI builder The GitHub-hosted Ubuntu 18.04 has been deprecated and will be entirely unsupported as of April 2023. Leading up to this there will be scheduled "brownouts" to encourage users to update their workflows. This commit retires our use of the GitHub-hosted Ubuntu 18.04 runners in advance of their removal. Reviewed-by: Richard Yao Reviewed-by: George Melikov Reviewed-by: Damian Szuberski Signed-off-by: Brian Behlendorf Closes #14238 --- .github/workflows/zfs-tests-functional.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/zfs-tests-functional.yml b/.github/workflows/zfs-tests-functional.yml index 236bf599f6..69ca539b7b 100644 --- a/.github/workflows/zfs-tests-functional.yml +++ b/.github/workflows/zfs-tests-functional.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - os: [18.04, 20.04, 22.04] + os: [20.04, 22.04] runs-on: ubuntu-${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -22,9 +22,6 @@ jobs: run: | sudo apt-get update sudo apt-get -qq upgrade - if [ "${{ matrix.os }}" = "18.04" ]; then - sed -i.bak 's/rng-tools-debian/rng-tools/' ${{ github.workspace }}/.github/workflows/build-dependencies.txt - fi sudo xargs --arg-file=${{ github.workspace }}/.github/workflows/build-dependencies.txt apt-get install -qq sudo apt-get clean - name: Autogen.sh