From d9e42faa6a7f4da98502be44566605a01a16a637 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 7 Apr 2024 17:27:43 +0200 Subject: [PATCH] GitHub CI: update list of container images Remove explicit versions, and instead use :latest and other aliases. Try to get a latest stable release and a development release for several well-known distributions. Drop CentOS as it is no longer supported. --- .github/workflows/test.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8776a36..1757c8ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: - mingw container: - image: debian:bullseye + image: debian:stable options: --privileged steps: @@ -59,7 +59,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 20 container: - image: debian:bullseye-slim + image: debian:stable-slim env: CI: 1 @@ -197,17 +197,16 @@ jobs: fail-fast: false matrix: os: - - alpine + - alpine:latest - alpine:edge - - centos:7 # aka RHEL 7 - - almalinux:8 # aka RHEL 8 - - almalinux:9 # aka RHEL 9 - - fedora - - debian:buster - - debian:bullseye + - almalinux:latest + - fedora:latest + - fedora:rawhide + - debian:oldstable + - debian:stable - debian:testing - - ubuntu # current LTS - - ubuntu:rolling # latest + - ubuntu:latest + - ubuntu:rolling container: image: ${{ matrix.os }} options: --privileged -- 2.20.1