Skip to content

Commit 7f4c6cf

Browse files
committed
1 parent 38870cd commit 7f4c6cf

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/coding-standards.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
coding-standards:
1313
name: "CS Fixer & PHPStan"
14-
runs-on: "ubuntu-20.04"
14+
runs-on: "ubuntu-22.04"
1515

1616
strategy:
1717
matrix:
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: "Checkout"
23-
uses: "actions/checkout@v3"
23+
uses: "actions/checkout@v4"
2424

2525
- name: "Install PHP"
2626
uses: "shivammathur/setup-php@v2"
@@ -33,7 +33,7 @@ jobs:
3333
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434

3535
- name: "Install dependencies with Composer"
36-
uses: "ramsey/composer-install@v2"
36+
uses: "ramsey/composer-install@v3"
3737
with:
3838
composer-options: "--optimize-autoloader --prefer-dist"
3939

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
phpunit:
1616
name: "PHPUnit (PHP ${{ matrix.php }})"
17-
runs-on: "ubuntu-20.04"
17+
runs-on: "ubuntu-22.04"
1818

1919
strategy:
2020
matrix:
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: "Checkout"
32-
uses: "actions/checkout@v3"
32+
uses: "actions/checkout@v4"
3333
with:
3434
fetch-depth: 2
3535

@@ -48,7 +48,7 @@ jobs:
4848
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update"
4949

5050
- name: "Install dependencies with Composer"
51-
uses: "ramsey/composer-install@v2"
51+
uses: "ramsey/composer-install@v3"
5252
with:
5353
composer-options: "--optimize-autoloader --prefer-dist"
5454

@@ -60,7 +60,7 @@ jobs:
6060

6161
phpunit-coverage:
6262
name: "PHPUnit coverage (PHP ${{ matrix.php }})"
63-
runs-on: "ubuntu-20.04"
63+
runs-on: "ubuntu-22.04"
6464

6565
strategy:
6666
matrix:
@@ -69,7 +69,7 @@ jobs:
6969

7070
steps:
7171
- name: "Checkout"
72-
uses: "actions/checkout@v3"
72+
uses: "actions/checkout@v4"
7373
with:
7474
fetch-depth: 2
7575

@@ -88,7 +88,7 @@ jobs:
8888
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update"
8989

9090
- name: "Install dependencies with Composer"
91-
uses: "ramsey/composer-install@v2"
91+
uses: "ramsey/composer-install@v3"
9292
with:
9393
composer-options: "--optimize-autoloader --prefer-dist"
9494

@@ -111,7 +111,7 @@ jobs:
111111

112112
phpunit-lowest:
113113
name: "PHPUnit lowest deps (PHP ${{ matrix.php }})"
114-
runs-on: "ubuntu-20.04"
114+
runs-on: "ubuntu-22.04"
115115

116116
strategy:
117117
matrix:
@@ -120,7 +120,7 @@ jobs:
120120

121121
steps:
122122
- name: "Checkout"
123-
uses: "actions/checkout@v3"
123+
uses: "actions/checkout@v4"
124124
with:
125125
fetch-depth: 2
126126

@@ -139,7 +139,7 @@ jobs:
139139
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update"
140140

141141
- name: "Install dependencies with Composer"
142-
uses: "ramsey/composer-install@v2"
142+
uses: "ramsey/composer-install@v3"
143143
with:
144144
composer-options: "--optimize-autoloader --prefer-dist"
145145
dependency-versions: "lowest"

0 commit comments

Comments
 (0)