diff --git a/.gitea/workflows/production-deploy.yml b/.gitea/workflows/production-deploy.yml index 9f690cb7..7d911ffc 100644 --- a/.gitea/workflows/production-deploy.yml +++ b/.gitea/workflows/production-deploy.yml @@ -56,7 +56,9 @@ jobs: - name: Install dependencies run: | cd /workspace/repo - composer install --no-interaction --prefer-dist --optimize-autoloader + # TEMPORARY WORKAROUND: Ignore PHP 8.5 platform requirement until dependencies officially support PHP 8.5 + # TODO: Remove --ignore-platform-req=php when dependencies are updated (estimated: 1 month) + composer install --no-interaction --prefer-dist --optimize-autoloader --ignore-platform-req=php - name: Save Composer cache run: | diff --git a/.gitea/workflows/security-scan.yml b/.gitea/workflows/security-scan.yml index 3d3b0efd..c6d66cdb 100644 --- a/.gitea/workflows/security-scan.yml +++ b/.gitea/workflows/security-scan.yml @@ -60,7 +60,9 @@ jobs: - name: Install dependencies run: | cd /workspace/repo - composer install --prefer-dist --no-progress --no-dev + # TEMPORARY WORKAROUND: Ignore PHP 8.5 platform requirement until dependencies officially support PHP 8.5 + # TODO: Remove --ignore-platform-req=php when dependencies are updated (estimated: 1 month) + composer install --prefer-dist --no-progress --no-dev --ignore-platform-req=php - name: Save Composer cache run: |