vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit f57e07ab18d7121bd35985f3f9668963d85c345b parent 49e97252ef9f9330b527dedd337f2cab2ee14e34 Author: Randy Palamar <palamar@ualberta.ca> Date: Sat, 6 May 2023 09:12:26 -0600 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/ Diffstat:
| M | .github/workflows/ubuntu.yml | | | 10 | ++-------- |
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git 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 }}