From eaf7f98f956638857cc922ad6cb3deb2ab99a7cc Mon Sep 17 00:00:00 2001 From: n <n@tourmentine.com> Date: Sun, 29 Dec 2024 10:50:45 +0100 Subject: [PATCH] CI: force PHP 8.3 usage for PHP-CS-Fixer --- .forgejo/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 1caeac4..6011fd6 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -29,5 +29,5 @@ jobs: - name: Lint PHP files run: vendor/bin/phplint --no-cache --no-progress --exclude=vendor --verbose - name: PHP CS Fixer - run: vendor/bin/php-cs-fixer fix --dry-run --verbose --diff . + run: /usr/local/php83/bin/php vendor/bin/php-cs-fixer fix --dry-run --verbose --diff . - run: echo "🍏 This job's status is ${{ job.status }}."