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 b25f82e..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: [14,15,16,17,18] + 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 79fc2d9..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: [2,3,4,5,6] + patchVersion: [5,6,7,8,9] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/README.md b/README.md index f5409c2..33364fd 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ https://github.com/Imagick/imagick/tags https://github.com/newrelic/newrelic-php-agent/releases # Sample building for testing: -docker build -f src/7.4/src/Dockerfile -t docker.io/openmage/php:7.4.29 src/7.4/src/ +docker build -f src/7.4/src/Dockerfile -t docker.io/openmage/php:8.3.6 src/8.3/src/ # Sample building for multi arch testing and push to docker hub: cd src/8.3/src && docker buildx create --use && docker buildx build --progress=plain --platform linux/amd64,linux/arm64 --push -t docker.io/openmage/php:8.3.0 . 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 3136f70..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.18" +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 397f984..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.6" +ARG PHP_VERSION="8.3.9" ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2" \ PHP_CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2" \