From eacf7f063e21a868e8288f0a199ae4f074e07227 Mon Sep 17 00:00:00 2001 From: Andreas Mautz Date: Thu, 13 Mar 2025 19:15:06 +0100 Subject: [PATCH 1/2] [HOTFIX] bump versions --- .github/workflows/php-8.1.yml | 2 +- .github/workflows/php-8.2.yml | 2 +- .github/workflows/php-8.3.yml | 2 +- .github/workflows/php-8.4.yml | 2 +- src/8.1/src/Dockerfile | 2 +- src/8.2/src/Dockerfile | 2 +- src/8.3/src/Dockerfile | 2 +- src/8.4/src/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/php-8.1.yml b/.github/workflows/php-8.1.yml index 18722fe..93ff457 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: [26,27,28,29,30] + patchVersion: [27,28,29,30,32] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/php-8.2.yml b/.github/workflows/php-8.2.yml index b1b544d..9891cf9 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: [22,23,24,25,26] + patchVersion: [22,23,24,25,26,28] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/php-8.3.yml b/.github/workflows/php-8.3.yml index eafc8e3..de78262 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: [12,13,14,15,16] + patchVersion: [14,15,16,17,19] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/php-8.4.yml b/.github/workflows/php-8.4.yml index 3da3faa..02f3422 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: [0,1,2,3] + patchVersion: [1,2,3,4,5] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/src/8.1/src/Dockerfile b/src/8.1/src/Dockerfile index 831dc47..7fb9bde 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.30" +ARG PHP_VERSION="8.1.32" 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 7dd55aa..803e3be 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.26" +ARG PHP_VERSION="8.2.28" 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 c6562a0..9a1a4c3 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.16" +ARG PHP_VERSION="8.3.19" 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 4f4ac0d..cd90f4d 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.2" +ARG PHP_VERSION="8.4.5" ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ PHP_CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ From c7eddcc1309e1b9a2a4e01003ab2781fd258b6f6 Mon Sep 17 00:00:00 2001 From: Andreas Mautz Date: Thu, 13 Mar 2025 19:16:47 +0100 Subject: [PATCH 2/2] [HOTFIX] bump versions --- .github/workflows/php-8.2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php-8.2.yml b/.github/workflows/php-8.2.yml index 9891cf9..37c94f6 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: [22,23,24,25,26,28] + patchVersion: [23,24,25,26,28] steps: - name: Checkout uses: actions/checkout@v4