diff --git a/.github/workflows/php-8.1.yml b/.github/workflows/php-8.1.yml index 1be5820..3a0e1e5 100644 --- a/.github/workflows/php-8.1.yml +++ b/.github/workflows/php-8.1.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: version: ['8.1'] - patchVersion: [23,24,25,26,27] + patchVersion: [24,25,26,27,28] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/php-8.2.yml b/.github/workflows/php-8.2.yml index 199e1de..1d8fafd 100644 --- a/.github/workflows/php-8.2.yml +++ b/.github/workflows/php-8.2.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: version: ['8.2'] - patchVersion: [15,16,17,18,19] + patchVersion: [17,18,19,20,21] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/php-8.3.yml b/.github/workflows/php-8.3.yml index 9004723..b6e7118 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: [3,4,5,6,7] + patchVersion: [5,6,7,8,9] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/src/8.1/src/Dockerfile b/src/8.1/src/Dockerfile index ca16606..14b54a7 100644 --- a/src/8.1/src/Dockerfile +++ b/src/8.1/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.1.25" +ARG PHP_VERSION="8.1.28" ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ PHP_CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ diff --git a/src/8.2/src/Dockerfile b/src/8.2/src/Dockerfile index b2113fc..05a0b00 100644 --- a/src/8.2/src/Dockerfile +++ b/src/8.2/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.2.19" +ARG PHP_VERSION="8.2.21" ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ PHP_CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ diff --git a/src/8.3/src/Dockerfile b/src/8.3/src/Dockerfile index b330ae4..ee33017 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.7" +ARG PHP_VERSION="8.3.9" ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ PHP_CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2" \