Skip to content

Commit 994407d

Browse files
committed
Raise runner version to ubuntu-22.04
1 parent c4acbfa commit 994407d

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/deploy-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
build:
1616
name: Deploy to api
1717
if: github.repository == 'codeigniter4/CodeIgniter4'
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-22.04
1919

2020
steps:
2121
- name: Setup credentials

.github/workflows/test-autoreview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
jobs:
2222
auto-review-tests:
2323
name: Automatic Code Review
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-22.04
2525

2626
steps:
2727
- name: Checkout

.github/workflows/test-coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
lint:
2121
name: PHP ${{ matrix.php-version }} Lint with PHP CS Fixer
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-22.04
2323

2424
strategy:
2525
fail-fast: false

.github/workflows/test-deptrac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ concurrency:
3131
jobs:
3232
build:
3333
name: Architectural Inspection
34-
runs-on: ubuntu-20.04
34+
runs-on: ubuntu-22.04
3535
steps:
3636
- name: Checkout
3737
uses: actions/checkout@v3

.github/workflows/test-phpcpd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
jobs:
3131
build:
3232
name: Duplicate Code Detection
33-
runs-on: ubuntu-20.04
33+
runs-on: ubuntu-22.04
3434
steps:
3535
- name: Checkout
3636
uses: actions/checkout@v3

.github/workflows/test-phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
jobs:
3535
build:
3636
name: PHP ${{ matrix.php-versions }} Static Analysis
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-22.04
3838
strategy:
3939
fail-fast: false
4040
steps:

.github/workflows/test-phpunit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ env:
3737
jobs:
3838
tests:
3939
name: PHP ${{ matrix.php-versions }} - ${{ matrix.db-platforms }}
40-
runs-on: ubuntu-20.04
40+
runs-on: ubuntu-22.04
4141
if: "!contains(github.event.head_commit.message, '[ci skip]')"
4242

4343
strategy:
@@ -144,7 +144,7 @@ jobs:
144144
- name: Install latest ImageMagick
145145
run: |
146146
sudo apt-get update
147-
sudo apt-get install --reinstall libgs9-common fonts-noto-mono libgs9:amd64 libijs-0.35:amd64 fonts-urw-base35 ghostscript poppler-data libjbig2dec0:amd64 gsfonts libopenjp2-7:amd64 fonts-droid-fallback ttf-dejavu-core
147+
sudo apt-get install --reinstall libgs9-common fonts-noto-mono libgs9:amd64 libijs-0.35:amd64 fonts-urw-base35 ghostscript poppler-data libjbig2dec0:amd64 gsfonts libopenjp2-7:amd64 fonts-droid-fallback fonts-dejavu-core
148148
sudo apt-get install -y imagemagick
149149
sudo apt-get install --fix-broken
150150
@@ -199,7 +199,7 @@ jobs:
199199
coveralls:
200200
if: github.repository_owner == 'codeigniter4'
201201
needs: tests
202-
runs-on: ubuntu-20.04
202+
runs-on: ubuntu-22.04
203203

204204
steps:
205205
- name: Checkout

.github/workflows/test-rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ concurrency:
3636
jobs:
3737
build:
3838
name: PHP ${{ matrix.php-versions }} Analyze code (Rector) on ${{ matrix.paths }}
39-
runs-on: ubuntu-20.04
39+
runs-on: ubuntu-22.04
4040
strategy:
4141
fail-fast: false
4242
matrix:

.github/workflows/test-scss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ concurrency:
2626
jobs:
2727
build:
2828
name: Compilation of SCSS (Dart Sass)
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-22.04
3030

3131
steps:
3232
- name: Checkout

.github/workflows/test-userguide.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717
jobs:
1818
syntax_check:
1919
name: Check User Guide syntax
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-22.04
2121

2222
steps:
2323
- name: Checkout

0 commit comments

Comments
 (0)