From 4292b072a23a281fe3ff6c59f0d7985e37fd8454 Mon Sep 17 00:00:00 2001 From: Brandon Maier Date: Sun, 24 Nov 2024 16:01:47 -0600 Subject: [PATCH] .github/workflows: update ubuntu runner to supported version The Ubuntu runner fails with the following message > E: The repository 'http://security.ubuntu.com/ubuntu mantic-security Release' does not have a Release file. Ubuntu 23.10 is end-of-life as of July 2024 anyway. So switch to the latest Ubuntu tag, which is currently 24.04. See https://discourse.ubuntu.com/t/edubuntu-23-10-has-reached-end-of-life-eol/46325 Signed-off-by: Brandon Maier Signed-off-by: David Gibson --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 200c9b7d..a030ae62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ "alpine", "archlinux", "fedora", "ubuntu:23.10" ] + os: [ "alpine", "archlinux", "fedora", "ubuntu" ] container: image: ${{ matrix.os }} @@ -48,7 +48,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ "alpine", "archlinux", "fedora", "ubuntu:23.10" ] + os: [ "alpine", "archlinux", "fedora", "ubuntu" ] container: image: ${{ matrix.os }}