From 365140a7f8dba3f53627a10f2bc8172c6986c51f Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Fri, 29 Mar 2024 13:31:55 +0100 Subject: [PATCH] Ensure GD extension is installed --- .github/workflows/ci.yml | 1 + .github/workflows/integration.yaml | 1 + .github/workflows/release.yml | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3da79e3..5a6a591 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} + extensions: gd ini-values: date.timezone=Europe/Berlin - name: Validate composer.json and composer.lock diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 0ab1e13..0844acf 100755 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -23,6 +23,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: 8.3 + extensions: gd ini-values: date.timezone=Europe/Berlin - name: Get Composer Cache Directory diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 49c4e3b..362677d 100755 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,8 @@ jobs: - name: Set up PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.3' + extensions: gd ini-values: date.timezone=Europe/Berlin - name: Install dependencies