Skip to content

Commit

Permalink
Move CI jobs to Ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse committed May 23, 2023
1 parent ee643e9 commit 82ea27f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI-Experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
tests:
name: Tests on PHP 8.3 nightly
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
services:
redis:
image: redis
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
tests:
name: Tests on PHP ${{ matrix.php }} ${{ matrix.dependencies }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
services:
redis:
image: redis
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
file: ./coverage.xml
mutation_testing:
name: Mutation testing
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
services:
redis:
image: redis
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
path: infection.log
integration:
name: Integration tests on PHP ${{ matrix.php }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
php: ['8.1', '8.2']
Expand All @@ -101,7 +101,7 @@ jobs:
PHP_VERSION: ${{ matrix.php }}
code_quality:
name: Code quality
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -120,7 +120,7 @@ jobs:
run: ./vendor/bin/phpstan analyse
dependencies:
name: Dependencies state
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -134,7 +134,7 @@ jobs:
uses: docker://icanhazstring/composer-unused-ga
backward_compatible_changes:
name: Backward Compatible Changes
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -147,7 +147,7 @@ jobs:
# args: roave-backwards-compatibility-check:assert-backwards-compatible --from=v1.0.0
nix-shell:
name: Working Nix Shell
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 82ea27f

Please sign in to comment.