From 6563aa01426ebb9118f5deb6900126f649d03672 Mon Sep 17 00:00:00 2001 From: en-jschuetze <126695184+en-jschuetze@users.noreply.github.com> Date: Mon, 27 Nov 2023 20:29:38 +0100 Subject: [PATCH] Adjust fitness functions for php8.3.0 --- .../workflows/fitness-functions-release-8.3.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fitness-functions-release-8.3.yml b/.github/workflows/fitness-functions-release-8.3.yml index b663bb3..c81e4aa 100644 --- a/.github/workflows/fitness-functions-release-8.3.yml +++ b/.github/workflows/fitness-functions-release-8.3.yml @@ -9,6 +9,16 @@ on: jobs: + configured-alpine-is-latest-version: + name: "Ensure that Alpine 3.18.* is the latest alpine version" + env: + LATEST_ALPINE_RELEASE: "3.18." + runs-on: ubuntu-latest + steps: + - name: Execute + run: > + docker run --rm alpine cat /etc/os-release | grep $LATEST_ALPINE_RELEASE + php83-is-not-the-default-php-on-edge: name: "We need to symlink php83 until php 8.3 is the default php" runs-on: ubuntu-latest @@ -23,11 +33,9 @@ jobs: strategy: matrix: package: - - php83 - - php83-pecl-memcached - php83-pecl-grpc - - php83-pecl-pcov - php83-pecl-protobuf + - php83-pecl-imagick steps: - name: Execute run: "! docker run --rm alpine:edge apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"