From 807ec1f6f7ae7d677a003c37b1f61c20f2476981 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Sun, 12 Nov 2023 11:08:44 +0900 Subject: [PATCH] Upgrade CI to Alpine 3.18 (#2332) References #2328. --- .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 0dfa4ca..9ff50bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: - fedora:38 - fedora:37 - opensuse/leap:15 - - alpine:3.17 + - alpine:3.18 container: image: ${{ matrix.container }} diff --git a/.github/workflows/linux-ci-helper.sh b/.github/workflows/linux-ci-helper.sh index 3f8ece9..f195cab 100755 --- a/.github/workflows/linux-ci-helper.sh +++ b/.github/workflows/linux-ci-helper.sh @@ -210,7 +210,7 @@ elif [ "${CONTAINER_FULLNAME}" = "opensuse/leap:15" ]; then INSTALL_CHECKER_PKGS="cppcheck ShellCheck" INSTALL_CHECKER_PKG_OPTIONS="" -elif [ "${CONTAINER_FULLNAME}" = "alpine:3.17" ]; then +elif [ "${CONTAINER_FULLNAME}" = "alpine:3.18" ]; then PACKAGE_MANAGER_BIN="apk" PACKAGE_UPDATE_OPTIONS="update --no-progress" PACKAGE_INSTALL_OPTIONS="add --no-progress --no-cache"