Skip to content

Commit 24d360d

Browse files
committed
Fix GitHub Actions
1 parent a1f75bf commit 24d360d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/coding-standards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
coding-standards:
1313
name: "CS Fixer (PHP ${{ matrix.php }})"
14-
runs-on: "ubuntu-20.04"
14+
runs-on: "ubuntu-latest"
1515

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

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

2525
- name: "Install PHP"
2626
uses: "shivammathur/setup-php@v2"

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 4 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-latest"
1818

1919
strategy:
2020
matrix:
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: "Checkout"
29-
uses: "actions/checkout@v4"
29+
uses: "actions/checkout@v5"
3030
with:
3131
fetch-depth: 2
3232

@@ -49,7 +49,7 @@ jobs:
4949

5050
phpunit-coverage:
5151
name: "PHPUnit with coverage (PHP ${{ matrix.php }})"
52-
runs-on: "ubuntu-20.04"
52+
runs-on: "ubuntu-latest"
5353

5454
strategy:
5555
matrix:
@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: "Checkout"
61-
uses: "actions/checkout@v4"
61+
uses: "actions/checkout@v5"
6262
with:
6363
fetch-depth: 2
6464

0 commit comments

Comments
 (0)