From 85811a09abc994fcc6bdb7930faab3678ca9655a Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 13 Mar 2025 21:50:32 +0200 Subject: [PATCH] fix(ci): remove extra checks from php-composer (#70) --- .github/renovate.json | 25 ++++++------------------- php-composer/action.yml | 6 ------ 2 files changed, 6 insertions(+), 25 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 9c3970e..eae0b58 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,33 +1,20 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "github>ivuorinen/renovate-config" - ], + "extends": ["github>ivuorinen/renovate-config"], "packageRules": [ { - "matchUpdateTypes": [ - "minor", - "patch" - ], + "matchUpdateTypes": ["minor", "patch"], "matchCurrentVersion": "!/^0/", "automerge": true }, { - "matchDepTypes": [ - "devDependencies" - ], + "matchDepTypes": ["devDependencies"], "automerge": true } ], - "schedule": [ - "before 4am on monday" - ], + "schedule": ["before 4am on monday"], "vulnerabilityAlerts": { - "labels": [ - "security" - ], - "assignees": [ - "ivuorinen" - ] + "labels": ["security"], + "assignees": ["ivuorinen"] } } diff --git a/php-composer/action.yml b/php-composer/action.yml index bc8ea23..94aadc1 100644 --- a/php-composer/action.yml +++ b/php-composer/action.yml @@ -238,12 +238,6 @@ runs: exit 1 fi - # Check for any PHP errors in vendor - find vendor -name "*.php" -type f -exec php -l {} \; > /dev/null - - # Verify Composer installation - composer validate --no-check-all --strict - - name: Generate Optimized Autoloader if: success() shell: bash