From db9dcc1f28da77c63a4302161cf32219f5fcb027 Mon Sep 17 00:00:00 2001 From: Massimiliano Arione Date: Mon, 1 Jan 2024 16:40:27 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20test=20on=20latest=20php=20versi?= =?UTF-8?q?ons?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c33f113..5a8be4f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -6,7 +6,7 @@ on: jobs: tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: include: @@ -19,14 +19,18 @@ jobs: php: '7.4' - description: '8.0' php: '8.0' - - description: 'latest' + - description: '8.1' php: '8.1' + - description: '8.2' + php: '8.2' + - description: 'latest' + php: '8.3' name: PHP ${{ matrix.php }} tests steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.composer/cache/files key: ${{ matrix.php }}-${{ matrix.composer_option }}