Skip to content

Commit

Permalink
fixing github actions steps and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis committed Apr 14, 2026
1 parent 91f78f8 commit 1d818be
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/registry-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3", "8.4"]
php: ["8.3"]
db_engine: ["postgres", "mysql", "mariadb"]

env:
Expand All @@ -39,11 +39,18 @@ jobs:
shell: bash
run: |
set -euxo pipefail
# Amazon Linux 2 ships with an older Docker via amazon-linux-extras
# Install latest Docker CE from the official Docker repo for CentOS/RHEL
# Remove old docker packages first to avoid conflicts
sudo yum remove -y docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine || true
sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo yum install -y --allowerasing docker-ce docker-ce-cli containerd.io
sudo yum install -y docker-ce docker-ce-cli containerd.io
sudo systemctl start docker || true
docker --version
Expand Down

0 comments on commit 1d818be

Please sign in to comment.