From ac6b959d7c04f0cf1e86f666a9d5277a7b75c2cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Grundko=CC=88tter?= Date: Fri, 6 Dec 2024 08:53:35 +0100 Subject: [PATCH] removed outdated php versions from pipeline --- .github/workflows/php.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 82359e6..020f67e 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -10,6 +10,8 @@ jobs: runs-on: ubuntu-latest strategy: fail-fast: false + matrix: + php: [ '8.2', '8.3' ] steps: - uses: actions/checkout@v4 @@ -17,7 +19,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@2.31.1 with: - php-version: '8.1' + php-version: ${{ matrix.php }} tools: composer - name: Validate composer.json and composer.lock @@ -41,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0', '8.1'] + php: ['8.2', '8.3'] steps: - uses: actions/checkout@v4