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