From e76a0fa792b3dd35181f6e9e229dec22b6ca42e8 Mon Sep 17 00:00:00 2001 From: Eirik Stanghelle Morland Date: Sat, 22 Nov 2025 12:25:15 +0100 Subject: [PATCH 1/2] Stable 8.5 --- .github/workflows/buildx.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/buildx.yml b/.github/workflows/buildx.yml index 9567120..4d9b723 100644 --- a/.github/workflows/buildx.yml +++ b/.github/workflows/buildx.yml @@ -54,9 +54,6 @@ jobs: PHP_VERSION: ${{ matrix.php-version }} run: | USE_VERSION=$PHP_VERSION - if [ "$PHP_VERSION" == "8.5" ]; then - USE_VERSION="8.5.0RC1" - fi echo "name=$USE_VERSION" >> "$GITHUB_OUTPUT" - name: Build and push Docker image uses: docker/build-push-action@v6 From fb8bd1d2466b02e872d1e6fcaa1ed68c4dc69f78 Mon Sep 17 00:00:00 2001 From: Eirik Stanghelle Morland Date: Sat, 22 Nov 2025 12:26:00 +0100 Subject: [PATCH 2/2] Update test.yml --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 58a47fb..da6ae4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,13 +34,13 @@ jobs: uses: actions/checkout@v2 - name: Build test image - if: matrix.php-version != '8.5' + if: matrix.php-version != '8.6' run: docker build -t php-base --build-arg PHP_VERSION=$PHP_VERSION . env: PHP_VERSION: ${{ matrix.php-version }} - name: Build test image - if: matrix.php-version == '8.5' + if: matrix.php-version == '8.6' run: docker build -t php-base --build-arg PHP_VERSION=$PHP_VERSION . env: PHP_VERSION: '8.5.0RC1'