From f40c15fd3a46ba936648977d6b2d0ca586804997 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Tue, 3 Sep 2024 12:33:03 +0200 Subject: [PATCH 1/2] Use the latest pipeline docker image --- .github/workflows/action.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action.yaml b/.github/workflows/action.yaml index 5762fff17..fe2fd6454 100644 --- a/.github/workflows/action.yaml +++ b/.github/workflows/action.yaml @@ -14,7 +14,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: danger89/mbin-pipeline:1.1.0 + image: danger89/mbin-pipeline:1.2.0 steps: - uses: actions/checkout@v4 @@ -63,7 +63,7 @@ jobs: unit-test: runs-on: ubuntu-latest container: - image: danger89/mbin-pipeline:1.1.0 + image: danger89/mbin-pipeline:1.2.0 steps: - uses: actions/checkout@v4 @@ -96,7 +96,7 @@ jobs: security-check: runs-on: ubuntu-latest container: - image: danger89/mbin-pipeline:1.1.0 + image: danger89/mbin-pipeline:1.2.0 steps: - uses: actions/checkout@v4 @@ -106,7 +106,7 @@ jobs: fixer-dry-run: runs-on: ubuntu-latest container: - image: danger89/mbin-pipeline:1.1.0 + image: danger89/mbin-pipeline:1.2.0 steps: - uses: actions/checkout@v4 From acad1ab1797c5a272782f2ba9304493e685618e7 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Tue, 3 Sep 2024 12:36:50 +0200 Subject: [PATCH 2/2] Update Dockerfile --- ci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index cff1e67e7..fcab4a06a 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,7 +1,7 @@ FROM php:8.3 # Add composer -COPY --from=composer:2.7.7 /usr/bin/composer /usr/bin/composer +COPY --from=composer:2.7.8 /usr/bin/composer /usr/bin/composer # Add NodeJS RUN apt-get update && apt-get install -y nodejs npm @@ -15,7 +15,7 @@ RUN curl -sSLf \ https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions RUN chmod +x /usr/local/bin/install-php-extensions -RUN install-php-extensions amqp intl redis gd zip bcmath +RUN install-php-extensions amqp intl redis gd zip bcmath xsl # Install local-php-security-checker (same as used by "symfony security:check") RUN curl -sSLf \