chore(deps): update xdebug extenstion to 3.4.2 #48
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Container Image | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| tags: | |
| - '**' | |
| env: | |
| php_version: 8.4.5 | |
| unit_version: 1.34.2 | |
| composer_version: 2.8.4 | |
| datadog_version: 1.5.1 | |
| xdebug_version: 3.4.2 | |
| jobs: | |
| build: | |
| name: Build container image and push it to registry | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 190 | |
| permissions: | |
| id-token: write | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
| aws-region: us-east-1 | |
| - name: Login to Amazon ECR Public | |
| id: login-ecr-public | |
| uses: aws-actions/amazon-ecr-login@v2 | |
| with: | |
| registry-type: public | |
| - name: Parse version | |
| id: get-version | |
| uses: battila7/get-version-action@v2 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push - testing | |
| uses: docker/build-push-action@v6 | |
| timeout-minutes: 180 | |
| if: ${{ !steps.get-version.outputs.is-semver }} | |
| with: | |
| context: . | |
| file: ./Dockerfile | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| PHP_VERSION=${{ env.php_version }} | |
| UNIT_VERSION=${{ env.unit_version }} | |
| COMPOSER_VERSION=${{ env.composer_version }} | |
| XDEBUG_VERSION=${{ env.xdebug_version }} | |
| tags: | | |
| cookielab/unit-php:${{ github.ref_name }} | |
| public.ecr.aws/cookielab/unit-php:${{ github.ref_name }} | |
| ghcr.io/${{ github.repository }}:${{ github.ref_name }} | |
| - name: Build and push - pre-release | |
| uses: docker/build-push-action@v6 | |
| timeout-minutes: 180 | |
| if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease != '' }} | |
| with: | |
| context: . | |
| file: ./Dockerfile | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| PHP_VERSION=${{ env.php_version }} | |
| UNIT_VERSION=${{ env.unit_version }} | |
| COMPOSER_VERSION=${{ env.composer_version }} | |
| XDEBUG_VERSION=${{ env.xdebug_version }} | |
| tags: | | |
| cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }} | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }} | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }} | |
| - name: Build and push - stable | |
| uses: docker/build-push-action@v6 | |
| timeout-minutes: 180 | |
| if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease == '' }} | |
| with: | |
| context: . | |
| file: ./Dockerfile | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| PHP_VERSION=${{ env.php_version }} | |
| UNIT_VERSION=${{ env.unit_version }} | |
| COMPOSER_VERSION=${{ env.composer_version }} | |
| XDEBUG_VERSION=${{ env.xdebug_version }} | |
| tags: | | |
| cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }} | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }} | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }} | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }} | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }} | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }} | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }} | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }} | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }} | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }} | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }} | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }} | |
| - name: Build and push - testing - Datadog | |
| uses: docker/build-push-action@v6 | |
| timeout-minutes: 180 | |
| if: ${{ !steps.get-version.outputs.is-semver }} | |
| with: | |
| context: . | |
| file: ./Dockerfile.datadog | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| VERSION=${{ github.ref_name }} | |
| DATADOG_VERSION=${{ env.datadog_version }} | |
| tags: | | |
| cookielab/unit-php:${{ github.ref_name }}-dd | |
| public.ecr.aws/cookielab/unit-php:${{ github.ref_name }}-dd | |
| ghcr.io/${{ github.repository }}:${{ github.ref_name }}-dd | |
| cookielab/unit-php:${{ github.ref_name }}-datadog | |
| public.ecr.aws/cookielab/unit-php:${{ github.ref_name }}-datadog | |
| ghcr.io/${{ github.repository }}:${{ github.ref_name }}-datadog | |
| - name: Build and push - pre-release - Datadog | |
| uses: docker/build-push-action@v6 | |
| timeout-minutes: 180 | |
| if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease != '' }} | |
| with: | |
| context: . | |
| file: ./Dockerfile.datadog | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| VERSION=${{ steps.get-version.outputs.version-without-v }} | |
| DATADOG_VERSION=${{ env.datadog_version }} | |
| tags: | | |
| cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-dd | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-dd | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-dd | |
| cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-datadog | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-datadog | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-datadog | |
| - name: Build and push - stable - Datadog | |
| uses: docker/build-push-action@v6 | |
| timeout-minutes: 180 | |
| if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease == '' }} | |
| with: | |
| context: . | |
| file: ./Dockerfile.datadog | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| VERSION=${{ steps.get-version.outputs.version-without-v }} | |
| DATADOG_VERSION=${{ env.datadog_version }} | |
| tags: | | |
| cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-dd | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-dd | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-dd | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}-dd | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-dd | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-dd | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-dd | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}-dd | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-dd | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-dd | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-dd | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}-dd | |
| cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-datadog | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-datadog | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-datadog | |
| cookielab/unit-php:${{ steps.get-version.outputs.major }}-datadog | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.version-without-v }}-datadog | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-datadog | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-datadog | |
| public.ecr.aws/cookielab/unit-php:${{ steps.get-version.outputs.major }}-datadog | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-datadog | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}.${{ steps.get-version.outputs.patch }}-datadog | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}.${{ steps.get-version.outputs.minor }}-datadog | |
| ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}-datadog |