From 6c414aa9f20aad3710b0fe63b46a07b5ad699641 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 31 May 2022 12:41:57 +0200 Subject: [PATCH] Update the GitHub runners to the latest Ubuntu LTS version Fixes #365 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5db5184..2046b62d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ name: CI jobs: php-lint: name: PHP Lint - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] @@ -32,7 +32,7 @@ jobs: unit-tests: name: Unit tests - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [ php-lint ] @@ -82,7 +82,7 @@ jobs: static-analysis: name: Static Analysis - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [ php-lint ]