diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8ad23a..b31c480 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: env: ALIAS_VERSION: '8.0' - VERSION_FOR_ALIAS: '8.0.29' + VERSION_FOR_ALIAS: '8.0.30' jobs: ci: @@ -21,6 +21,7 @@ jobs: strategy: matrix: php-version: + - '8.0.30' - '8.0.29' - '8.0.28' - '8.0.27' diff --git a/8.0/Dockerfile b/8.0/Dockerfile index cbeacaa..1cfe040 100644 --- a/8.0/Dockerfile +++ b/8.0/Dockerfile @@ -62,7 +62,7 @@ RUN apt-get update && apt-get install --no-install-recommends libldap2-dev -y \ RUN docker-php-ext-configure pcntl --enable-pcntl \ && docker-php-ext-install pcntl -RUN pecl install xdebug-3.2.0 +RUN pecl install xdebug-3.2.2 RUN echo "zend_extension=`php -i | grep ^extension_dir | cut -f 3 -d ' '`/xdebug.so" >> /usr/local/etc/php/conf.d/xdebug.ini RUN docker-php-ext-install soap diff --git a/8.0/Dockerfile-alpine b/8.0/Dockerfile-alpine index bec91fd..6682ceb 100644 --- a/8.0/Dockerfile-alpine +++ b/8.0/Dockerfile-alpine @@ -116,7 +116,7 @@ RUN cp `php -i | grep ^extension_dir | cut -f 3 -d ' '`/*.so /tmp/ FROM build-base AS build-xdebug RUN apk add -U linux-headers -RUN pecl install xdebug-3.2.0 +RUN pecl install xdebug-3.2.2 RUN docker-php-ext-enable xdebug RUN cp `php -i | grep ^extension_dir | cut -f 3 -d ' '`/*.so /tmp/