diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e1f37170..f4c40671 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ on: jobs: phpcs: - runs-on: ubuntu-16.04 + runs-on: ubuntu-20.04 strategy: matrix: php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4'] @@ -21,7 +21,7 @@ jobs: - run: phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p phpcompatibility: - runs-on: ubuntu-16.04 + runs-on: ubuntu-20.04 strategy: matrix: php-versions: ['5.6', '7.4'] diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 29ca71c0..d81cf554 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ on: jobs: phpunit6: - runs-on: ubuntu-16.04 + runs-on: ubuntu-20.04 strategy: matrix: php-versions: ['7.0', '7.1', '7.2'] @@ -21,7 +21,7 @@ jobs: - run: phpunit --configuration=phpunit.xml --include-path=lib/ phpunit7: - runs-on: ubuntu-16.04 + runs-on: ubuntu-20.04 strategy: matrix: php-versions: ['7.1', '7.2', '7.3'] @@ -34,7 +34,7 @@ jobs: - run: phpunit --configuration=phpunit.xml --include-path=lib/ phpunit8: - runs-on: ubuntu-16.04 + runs-on: ubuntu-20.04 strategy: matrix: php-versions: ['7.3', '7.4']