Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile.packaging
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/packages/package-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading