From 8ee363c0c30b554fff94045db83695e8bebe981f Mon Sep 17 00:00:00 2001 From: Willem-Jan Date: Fri, 8 Mar 2024 18:36:20 +0100 Subject: [PATCH] Github is also allowed in 2024 --- .github/workflows/ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4bd6d8..443e276 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,14 +13,13 @@ on: jobs: tests: name: "Run tests" - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" strategy: matrix: php-version: - - "7.4" - - "8.0" - "8.1" - "8.2" + - "8.3" steps: - name: "Checkout" uses: "actions/checkout@v4" @@ -40,14 +39,14 @@ jobs: coding-standards: name: "Coding standards" - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" steps: - name: "Checkout" uses: "actions/checkout@v4" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: - php-version: "8.0" + php-version: "8.3" coverage: "none" - name: "Install dependencies with Composer" uses: "ramsey/composer-install@v3" @@ -66,14 +65,14 @@ jobs: static-analysis: name: "Static analysis" - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" steps: - name: "Checkout" uses: "actions/checkout@v4" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: - php-version: "8.0" + php-version: "8.3" coverage: "none" - name: "Install dependencies with Composer" uses: "ramsey/composer-install@v3"