From 550c407bf51d014b5d582ff4724ca62d5452f66e Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 8 Jan 2024 12:12:26 +0100 Subject: [PATCH] GH Actions/lint: stop linting against PHP 8.2 The lint workflow in principle only lints against the high/low PHP version for each major (+ nightly) as the tests already run against all PHP versions anyway. What with the release of PHP 8.3, the linting against PHP 8.2 can now be removed. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c5f117928..27359b0fb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: # Lint against the high/low versions of each PHP major + nightly. - php: ['5.6', '7.0', '7.4', '8.0', '8.2', '8.3', '8.4'] + php: ['5.6', '7.0', '7.4', '8.0', '8.3', '8.4'] name: "Lint: PHP ${{ matrix.php }}" continue-on-error: ${{ matrix.php == '8.4' }}