From 86ef0b0e5ec03528d539d042689e00d392530b2e Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sun, 5 Nov 2023 08:30:05 -0500 Subject: [PATCH] chore: uses PHP 8.2 only --- .github/workflows/static.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index eb2596e..74fb954 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -18,7 +18,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.1 + php-version: 8.2 tools: composer:v2 coverage: none diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e2cd7bf..ef3ffd8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,8 +7,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] # (macos-latest, windows-latest) 2.x-dev is under development - php: ['8.1', '8.2', '8.3'] + os: [ubuntu-latest, macos-latest] # windows-latest is not supported + php: ['8.2', '8.3'] dependency-version: [prefer-lowest, prefer-stable] parallel: ['', '--parallel']