From 7418a75f7e4e992e213349c19d8f5d146a7e841f Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Mon, 5 Dec 2022 10:29:29 +0100 Subject: [PATCH] Run tests on Ubuntu 22.04 --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 82f4220d..62b1a7a9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ permissions: jobs: coding-standard: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 name: Coding standards steps: @@ -43,7 +43,7 @@ jobs: run: cs2pr ./phpcs-report.xml lint: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 strategy: matrix: php: ['5.5', '7.2', '8.0', '8.1'] @@ -84,7 +84,7 @@ jobs: test: needs: ['coding-standard', 'lint'] - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 strategy: matrix: php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']