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 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'