From db80fa2eb049733d67ea521101ad7a93e48d7005 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Sat, 25 May 2024 22:14:48 +0900 Subject: [PATCH] Upgrade CI to Alpine 3.20 --- .github/workflows/ci.yml | 2 +- .github/workflows/linux-ci-helper.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6911be43f0..d0b48f534a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: - fedora:40 - fedora:39 - opensuse/leap:15 - - alpine:3.19 + - alpine:3.20 container: image: ${{ matrix.container }} diff --git a/.github/workflows/linux-ci-helper.sh b/.github/workflows/linux-ci-helper.sh index 0ec42de4c8..1afb524a1c 100755 --- a/.github/workflows/linux-ci-helper.sh +++ b/.github/workflows/linux-ci-helper.sh @@ -187,7 +187,7 @@ elif [ "${CONTAINER_FULLNAME}" = "opensuse/leap:15" ]; then INSTALL_CHECKER_PKGS="cppcheck ShellCheck" INSTALL_CHECKER_PKG_OPTIONS="" -elif [ "${CONTAINER_FULLNAME}" = "alpine:3.19" ]; then +elif [ "${CONTAINER_FULLNAME}" = "alpine:3.20" ]; then PACKAGE_MANAGER_BIN="apk" PACKAGE_UPDATE_OPTIONS="update --no-progress" PACKAGE_INSTALL_OPTIONS="add --no-progress --no-cache"