From f5465590b4d32049d5c9dbb4b5d131e1cc3dcf74 Mon Sep 17 00:00:00 2001 From: Timo Schinkel Date: Wed, 17 Dec 2025 11:43:19 +0100 Subject: [PATCH] Run inspections on PHP 8.5 No that PHP 8.5 has been released we should run inspections on that version to be able to guarantee support. Also update `actions/checkout` action to the latest version (`6`). --- .github/workflows/pull_request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a925328..106056c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -7,11 +7,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4'] + php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] name: PHP ${{ matrix.php-versions }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 with: