From 84c188c031773f2038ca14ee57b31cb7b5d5aa7b Mon Sep 17 00:00:00 2001 From: tanner Date: Mon, 10 Jun 2024 21:56:50 -0400 Subject: [PATCH] fix some gh actions --- .github/workflows/larastan.yml | 2 +- .github/workflows/lint-php.yml | 4 ++-- .github/workflows/test-php.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/larastan.yml b/.github/workflows/larastan.yml index e1d62bf..5f06618 100644 --- a/.github/workflows/larastan.yml +++ b/.github/workflows/larastan.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1] + php: [8.3] name: PHP Version:${{ matrix.php }} steps: diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml index 63c5260..2e7fb6b 100644 --- a/.github/workflows/lint-php.yml +++ b/.github/workflows/lint-php.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1] + php: [8.3] name: PHP Version:${{ matrix.php }} @@ -43,4 +43,4 @@ jobs: run: composer install --prefer-dist --no-suggest --no-progress - name: Detect coding standard violations - run: vendor/bin/phpcs -q --report=checkstyle | cs2pr --graceful-warnings + run: vendor/bin/pint --test --format=checkstyle | cs2pr diff --git a/.github/workflows/test-php.yml b/.github/workflows/test-php.yml index 9df932b..0fa2361 100644 --- a/.github/workflows/test-php.yml +++ b/.github/workflows/test-php.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1] + php: [8.3] name: PHP Version:${{ matrix.php }}