From 11e3f7ad6243d216f4e4ea61c0484464cb6f66ed Mon Sep 17 00:00:00 2001 From: Pavel Grancharov Date: Sun, 28 Jan 2024 02:00:08 +0200 Subject: [PATCH] Fix linter path. --- .github/workflows/pipeline.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 75759ad..a81a09a 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -43,7 +43,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.3 tools: composer:v2 coverage: none @@ -52,8 +52,7 @@ jobs: run: composer install - name: Run linter - working-directory: ./application - run: ./vendor/bin/php-cs-fixer fix app/ + run: ./application/vendor/bin/php-cs-fixer fix app/ - name: Commit linted files id: auto-commit-action