From 01a9fb7b2582f3facf3562e5cf6fd8e2b0eb1e9a Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Sat, 6 May 2023 09:12:26 -0600 Subject: ci: remove deprecated ubuntu-18.04 and switch to ubuntu-latest ubuntu-latest is supposed to track the newest supported ubuntu release which as of now is 22.04. 18.04 has been deprecated for a while and seems like it has finally been removed: https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/ --- .github/workflows/ubuntu.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 2c779c5..68e6291 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -7,9 +7,8 @@ jobs: strategy: matrix: os: - - ubuntu-22.04 # should be latest, documentation is outdated - - ubuntu-20.04 # latest - - ubuntu-18.04 + - ubuntu-latest + - ubuntu-20.04 config: - "" - --disable-curses @@ -38,11 +37,6 @@ jobs: libtre-dev \ lua-lpeg - - name: Dependency Ubuntu 18.04 - if: matrix.os == 'ubuntu-18.04' - run: | - sudo apt install lua-busted - - name: Build run: | ./configure ${{ matrix.config }} -- cgit v1.2.3