From 0f32bf59a3d4c05eb68f119972c89a7eaa70da6e Mon Sep 17 00:00:00 2001 From: myrmidex Date: Sat, 6 Jun 2026 07:41:34 +0000 Subject: [PATCH] Fix dependencies CI issue --- .forgejo/workflows/ci.yml | 8 +++++++- composer.json | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index a7e8eee..5e4089f 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -28,10 +28,16 @@ jobs: steps: - uses: https://data.forgejo.org/actions/checkout@v4 + - name: Cache PHP installation + uses: https://data.forgejo.org/actions/cache@v4 + with: + path: /usr/local/php + key: php-8.4-pdo_pgsql-mbstring-xml-dom-intl-pcov + - name: Set up PHP uses: https://github.com/shivammathur/setup-php@v2 with: - php-version: '8.3' + php-version: '8.4' extensions: pdo_pgsql, mbstring, xml, dom, intl coverage: pcov diff --git a/composer.json b/composer.json index c76f2c3..9dfe4b4 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "minimum-stability": "stable", "prefer-stable": true, "require": { - "php": ">=8.3", + "php": ">=8.4", "ext-ctype": "*", "ext-iconv": "*", "doctrine/doctrine-bundle": "^3.2",