From 1059da477ad4caabb9a8f1e86a8f49c99cd6442b Mon Sep 17 00:00:00 2001 From: Dmitry Misharov Date: Wed, 16 Jul 2025 11:05:27 +0200 Subject: [PATCH] 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) (cherry picked from commit a9a7e017b8cde8ea33918a63eec392b0f98979fe) --- .github/workflows/os-zoo.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml index 2d2c74f9ce2..0a531cf5ae3 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: | -- 2.47.2