diff --git a/.github/workflows/php-8.3.yml b/.github/workflows/php-8.3.yml index ade278f..42c5131 100644 --- a/.github/workflows/php-8.3.yml +++ b/.github/workflows/php-8.3.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: version: ['8.3'] - patchVersion: [20,21,22,23,24] + patchVersion: [21,22,23,24,25] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/php-8.4.yml b/.github/workflows/php-8.4.yml index 54b0db3..e6887e1 100644 --- a/.github/workflows/php-8.4.yml +++ b/.github/workflows/php-8.4.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: version: ['8.4'] - patchVersion: [7,8,9,10,11] + patchVersion: [8,9,10,11,12] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/src/8.3/src/Dockerfile b/src/8.3/src/Dockerfile index bfebb02..92db621 100644 --- a/src/8.3/src/Dockerfile +++ b/src/8.3/src/Dockerfile @@ -10,7 +10,7 @@ ARG PHP_PECL_REQUIREMENTS="redis igbinary" ARG PHP_CONFIGURE_ARGS="--enable-soap --enable-intl" ARG PHP_CONFIGURE_ARGS_EXTRA="" ARG PHP_CONFIGURE_ARGS_FPM="--enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data" -ARG PHP_VERSION="8.3.23" +ARG PHP_VERSION="8.3.25" ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ PHP_CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ diff --git a/src/8.4/src/Dockerfile b/src/8.4/src/Dockerfile index 9c11412..2bbd26d 100644 --- a/src/8.4/src/Dockerfile +++ b/src/8.4/src/Dockerfile @@ -10,7 +10,7 @@ ARG PHP_PECL_REQUIREMENTS="redis igbinary" ARG PHP_CONFIGURE_ARGS="--enable-soap --enable-intl" ARG PHP_CONFIGURE_ARGS_EXTRA="" ARG PHP_CONFIGURE_ARGS_FPM="--enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data" -ARG PHP_VERSION="8.4.10" +ARG PHP_VERSION="8.4.12" ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ PHP_CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2" \