From 7608a703e4eacb1440e9a038c88591cdca944fa2 Mon Sep 17 00:00:00 2001 From: Kazuyoshi Kato Date: Tue, 17 Dec 2024 16:30:08 -0800 Subject: [PATCH] fix: remove ubuntu:23.04 (#4122) It is EOL. `apt-get update` no longer works. https://wiki.ubuntu.com/Releases --- .github/workflows/test_install.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index cc408f6cf0..c06c54e82e 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -17,9 +17,11 @@ jobs: max-parallel: 4 matrix: image: + # Only test LTS versions. + - "ubuntu:24.04" - "ubuntu:20.04" - "ubuntu:22.04" - - "ubuntu:23.04" + - "debian:oldstable-slim" - "debian:stable-slim" - "alpine:latest"