From 318f692a15d86efab9fa6c424e676813ac9a3c09 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 27 Oct 2025 14:32:04 +0100 Subject: [PATCH] ci: add tests for PHP 8.3, 8.4, 8.5 upgraded github actions to their latest versions. --- .github/workflows/runTests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/runTests.yml b/.github/workflows/runTests.yml index dd093e9..0dcad60 100644 --- a/.github/workflows/runTests.yml +++ b/.github/workflows/runTests.yml @@ -19,13 +19,16 @@ jobs: - '8.0' - '8.1' - '8.2' + - '8.3' + - '8.4' + - '8.5' os: [ubuntu-latest, windows-latest, macOS-latest] dependencies: ['install', 'update --prefer-lowest', 'update'] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Set up PHP ${{ matrix.php-versions }} uses: shivammathur/setup-php@v2 @@ -48,7 +51,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}