From: Dmitry Misharov Date: Wed, 16 Jul 2025 09:05:27 +0000 (+0200) Subject: Update container images in OS Zoo CI workflow X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a9a7e017b8cde8ea33918a63eec392b0f98979fe;p=thirdparty%2Fopenssl.git Update container images in OS Zoo CI workflow Replace outdated and unsupported distro versions with up-to-date ones. Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28049) --- diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml index e47eb154c98..c5f16631775 100644 --- a/.github/workflows/os-zoo.yml +++ b/.github/workflows/os-zoo.yml @@ -56,19 +56,21 @@ jobs: fail-fast: false matrix: zoo: - - image: docker.io/library/debian:10 - install: apt-get update && apt-get install -y gcc make perl - image: docker.io/library/debian:11 install: apt-get update && apt-get install -y gcc make perl - image: docker.io/library/debian:12 install: apt-get update && apt-get install -y gcc make perl + - image: docker.io/library/debian:trixie + install: apt-get update && apt-get install -y gcc make perl - image: docker.io/library/ubuntu:20.04 install: apt-get update && apt-get install -y gcc make perl - image: docker.io/library/ubuntu:22.04 install: apt-get update && apt-get install -y gcc make perl - - image: docker.io/library/fedora:38 + - image: docker.io/library/ubuntu:24.04 + install: apt-get update && apt-get install -y gcc make perl + - image: docker.io/library/fedora:41 install: dnf install -y gcc make perl-core - - image: docker.io/library/fedora:39 + - image: docker.io/library/fedora:42 install: dnf install -y gcc make perl-core - image: docker.io/library/centos:8 install: |