From c72de1415d53b8cd0a4d7d4744e12c4fb83aa180 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Wed, 20 Dec 2023 18:55:51 +0300 Subject: [PATCH] Revert "use local php-cs-fixer in workflows" This reverts commit ee0085798ebab9647b3baedf61b7b0793662b004. --- .github/workflows/qa.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/qa.yaml b/.github/workflows/qa.yaml index c6a531f..0b4b81f 100644 --- a/.github/workflows/qa.yaml +++ b/.github/workflows/qa.yaml @@ -19,7 +19,7 @@ jobs: with: php-version: 7.4 coverage: none - tools: composer:v2, cs2pr + tools: composer:v2, cs2pr, php-cs-fixer - name: Install Composer dependencies (highest) uses: 'ramsey/composer-install@v1' @@ -27,4 +27,4 @@ jobs: dependency-versions: 'highest' - name: Run PHP-CS-Fixer - run: ./vender/bin/php-cs-fixer fix --dry-run --format checkstyle | cs2pr + run: php-cs-fixer fix --dry-run --format checkstyle | cs2pr