Skip to content

Commit

Permalink
Fix: Switch to Ubuntu 22.04 for CI workflows
Browse files Browse the repository at this point in the history
ci.yml currently requests Ubuntu 18.04 runners, but per actions/runner-images#6002 Ubuntu 18.04 runners are now fully unsupported:
```
We have started the deprecation process for Ubuntu 18.04.
[...] the image will be fully unsupported by 2023/04/03
```
  • Loading branch information
alex-ng-wesoft authored Aug 14, 2023
1 parent 2508626 commit 053d8c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
testsuite:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -42,4 +42,4 @@ jobs:
if: matrix.php-version == '7.4'
run: |
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;

0 comments on commit 053d8c1

Please sign in to comment.