[TASK] Update all dependencies #2517
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CGL | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| cgl: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| # Prepare environment | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| # We use the minimum supported PHP version | |
| php-version: 8.2 | |
| tools: composer:v2, composer-require-checker, composer-unused, cs2pr | |
| coverage: none | |
| # Validation | |
| - name: Validate composer.json | |
| run: composer validate | |
| # Install dependencies | |
| - name: Install Composer dependencies | |
| run: composer require --no-progress gmostafa/php-graphql-client:"^1.13" | |
| # Check Composer dependencies | |
| - name: Check dependencies | |
| run: composer-require-checker check | |
| - name: Reset composer.json | |
| run: git checkout composer.json composer.lock | |
| - name: Re-install Composer dependencies | |
| uses: ramsey/composer-install@v4 | |
| - name: Check for unused dependencies | |
| run: composer-unused --excludePackage=symfony/finder --excludePackage=symfony/yaml | |
| # Linting | |
| - name: Lint composer.json | |
| run: composer lint:composer | |
| - name: Lint Editorconfig | |
| run: composer lint:editorconfig | |
| - name: Lint JSON | |
| run: composer lint:json | |
| - name: Lint PHP | |
| run: composer lint:php -- --format=checkstyle | cs2pr | |
| # SCA | |
| - name: SCA PHP | |
| run: composer sca:php -- --error-format github | |
| # Migration | |
| - name: Rector migration | |
| run: composer migration:rector -- --dry-run | |
| # Schema | |
| - name: Validate configuration schema | |
| run: composer validate-schema |