From d832d8c6c5a15e1c267d7288eddbcaa634427e0a Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sun, 1 Sep 2024 20:53:37 +0200 Subject: [PATCH] Simplify lint CI --- .github/workflows/lint.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5e3fe1d29..bff8ead33 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,16 +24,16 @@ jobs: - "nightly" steps: - - name: "Checkout" - uses: "actions/checkout@v4" + - uses: actions/checkout@v4 - - name: "Install PHP" - uses: "shivammathur/setup-php@v2" + - uses: shivammathur/setup-php@v2 with: - coverage: "none" - extensions: "intl" - ini-values: "memory_limit=-1, error_reporting=E_ALL, display_errors=On" php-version: "${{ matrix.php-version }}" + coverage: none + + - uses: ramsey/composer-install@v3 + with: + dependency-versions: highest - name: "Lint PHP files" run: |