From fe8c0d4b34497a23341e01b63a25e3534993c0ff Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 30 Jun 2025 09:20:30 +0200 Subject: [PATCH] php: Don't run on legacy PHP versions --- .github/workflows/php.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index ee25f70..bb5b034 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -6,8 +6,6 @@ on: - main - release/* pull_request: - branches: - - main jobs: lint: @@ -17,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php: ['8.2', '8.3', '8.4'] os: ['ubuntu-latest'] steps: @@ -51,7 +49,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php: ['8.2', '8.3', '8.4'] os: ['ubuntu-latest'] steps: