diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7935d250..601e42647 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -188,7 +188,7 @@ jobs: - image: "redhatenterprise" version: "9" - image: "alpine" - version: "3.22" + version: "3.23" steps: - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 - name: Configure Go Proxy diff --git a/Makefile b/Makefile index 0bf3c3379..e9877a85f 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ GOBIN ?= $$(go env GOPATH)/bin # | redhatenterprise | 8, 9, 10 | | # | rockylinux | 8, 9, 10 | | # | almalinux | 8, 9, 10 | | -# | alpine | 3.20, 3.21 3.22 | | +# | alpine | 3.20, 3.21 3.22 3.23 | | # | oraclelinux | 8, 9, 10 | | # | suse | sle15, sle16 | | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # diff --git a/Makefile.packaging b/Makefile.packaging index ecc772059..e9ab80413 100644 --- a/Makefile.packaging +++ b/Makefile.packaging @@ -18,7 +18,7 @@ RPM_DISTROS ?= suse-15-x86_64 suse-16-x86_64 RPM_ARCH := x86_64 REDHAT_VERSIONS ?= redhatenterprise-8 redhatenterprise-9 redhatenterprise-10 REDHAT_ARCHS ?= aarch64 x86_64 -APK_VERSIONS ?= 3.20 3.21 3.22 +APK_VERSIONS ?= 3.20 3.21 3.22 3.23 APK_ARCHS ?= aarch64 x86_64 APK_REVISION ?= 1 AMAZON_VERSIONS ?= amazon-2 amazon-2023 diff --git a/scripts/packages/package-check.sh b/scripts/packages/package-check.sh index eec17de8c..b97750b33 100755 --- a/scripts/packages/package-check.sh +++ b/scripts/packages/package-check.sh @@ -62,7 +62,7 @@ majorVersion=$(echo ${VERSION} | cut -d. -f1) # Define package URIs to check for each platform APK=() -ALPINE_VERSIONS=("3.22" "3.21" "3.20") +ALPINE_VERSIONS=("3.23" "3.22" "3.21" "3.20") ALPINE_ARCH=("x86_64" "aarch64") for alpine_version in "${ALPINE_VERSIONS[@]}"; do for arch in ${ALPINE_ARCH[@]}; do