Skip to content

Commit

Permalink
Use debian:12 instead of centos:7 for artifact verification (#21527)
Browse files Browse the repository at this point in the history
CentOS 7 has entered End of Life as of June 30, 2024. Debian 12 is available from Docker and offers linux/386 architecture support
  • Loading branch information
nathancoleman committed Jul 9, 2024
1 parent 8d2370d commit ab3d5c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/verify_artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ function verify_rpm {
case "${artifact_path}" in
*.i386.rpm)
docker_platform="linux/386"
docker_image="i386/centos:7"
docker_image="debian:12"
;;
*.x86_64.rpm)
docker_platform="linux/amd64"
docker_image="amd64/centos:7"
docker_image="debian:12"
;;
*.armv7hl.rpm)
docker_platform="linux/arm/v7"
Expand Down

0 comments on commit ab3d5c7

Please sign in to comment.