From 4324b375afea0d627952fe1be8f3e9a8ba2683ff Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 21 Jun 2021 21:05:19 +0200 Subject: [PATCH] GH Actions: ensure linting is done against highest/lowest supported PHP version `latest` in the matrix will always refer to the latest stable PHP release, which would now be PHP 8.0. --- .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 befb428c2..be342746d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: matrix: php-version: - "5.3" - - "7.4" + - "latest" steps: - name: "Checkout"