Skip to content

[TASK] Update all dependencies #744

[TASK] Update all dependencies

[TASK] Update all dependencies #744

Workflow file for this run

name: CGL
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
prepare:
name: Prepare workflow
uses: eliashaeussler/.github/.github/workflows/pull-request.yaml@fdc23f43e6ba48018b997f552dd39f9944c17c86 # main
cgl:
runs-on: ubuntu-latest
needs: prepare
if: needs.prepare.outputs.continue == 'true'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
# Prepare environment
- name: Setup PHP
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2
with:
# We use the minimum supported PHP version
php-version: 8.2 # renovate-ignore
tools: composer:v2, composer-require-checker, composer-unused, cs2pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Validation
- name: Validate composer.json
run: composer validate
# Install dependencies
- name: Install Composer dependencies
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
# Check Composer dependencies
- name: Check dependencies
run: composer-require-checker check
- name: Check for unused dependencies
run: composer-unused
# Linting
- name: Lint composer.json
run: composer lint:composer
- name: Lint Editorconfig
run: composer lint:editorconfig
- name: Lint PHP
run: composer lint:php -- --format checkstyle | cs2pr
# SCA
- name: SCA PHP
run: composer sca:php -- --error-format github
# Migration
- name: Run Rector migration
run: composer migration:rector -- --dry-run