From 1e5e98071ff861b5817c8f5427fe6a79f52aa7ab Mon Sep 17 00:00:00 2001 From: Tim Bond Date: Sat, 13 Apr 2024 19:18:37 -0700 Subject: [PATCH] Do not run Pull Request unit tests on unsupported versions 40763932f6c9796b33a9103fc258079bbe05d22c dropped support for PHP versions < 8.2 --- .github/workflows/pr.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 18eb709..7b2b0cc 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -9,11 +9,11 @@ jobs: strategy: matrix: - php: [ '7.2', '7.3', '7.4', '8', '8.1', '8.2', '8.3'] + php: ['8.2', '8.3'] steps: - name: "Init repository" - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: "Setup PHP" uses: shivammathur/setup-php@v2