diff --git a/.github/workflows/verify-on-container-centos.yml b/.github/workflows/verify-on-container-centos.yml index 6d23c68..8318e4a 100644 --- a/.github/workflows/verify-on-container-centos.yml +++ b/.github/workflows/verify-on-container-centos.yml @@ -17,7 +17,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 fail-fast: false steps: - name: Install packages @@ -45,7 +46,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 fail-fast: false steps: - name: Install packages @@ -73,7 +75,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 fail-fast: false steps: - name: Install packages @@ -103,7 +106,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 steps: - name: Install packages run: | @@ -137,7 +141,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 steps: - name: Install packages run: | @@ -167,7 +172,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 steps: - name: Install packages run: | @@ -201,7 +207,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 steps: - name: Install packages run: | @@ -231,7 +238,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 steps: - name: Install packages run: | @@ -266,7 +274,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 steps: - name: Install packages run: | @@ -296,7 +305,8 @@ jobs: - ubuntu-20.04 - ubuntu-22.04 container: - - centos:7 + - quay.io/centos/centos:centos7 + - quay.io/centos/centos:stream8 steps: - name: Install packages run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c1620f..f5eb524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Others -* add `windows-2022`, `macos-11`, `macos-12`, `ubuntu-22.04` -* drop `ubuntu-16.04`, `centos:8 (Docker container)` +* add `windows-2022`, `macos-11`, `macos-12`, `ubuntu-22.04`, and `CentOS 8 Stream (Docker container)` +* drop `ubuntu-16.04`, and `CentOS 8 (Docker container)` ## [2.3.1] - 2021-08-01 diff --git a/README.md b/README.md index 52080a4..f249ed9 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ tested on: * [all available virtual machines](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources) (Windows Server 2022/2019, macOS Monterey/Big Sur/Catalina, and Ubuntu 22.04/20.04/18.04) * [Docker container (Ubuntu)](https://hub.docker.com/_/ubuntu) / requires `openssh-client` package; `apt install -y openssh-client` -* [Docker container (CentOS)](https://hub.docker.com/_/centos) / requires `openssh-clients` package; `yum install -y openssh-clients` +* [Docker container (CentOS)](https://quay.io/repository/centos/centos) / requires `openssh-clients` package; `yum install -y openssh-clients` * [Docker container (Alpine Linux)](https://hub.docker.com/_/alpine) / requires `openssh-client` package; `apk add openssh-client` ## Usage