Skip to content

Commit eea34b2

Browse files
committed
Updated CI runner
1 parent 08a480b commit eea34b2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616
jobs:
1717
phpunit:
1818
name: 'PHPUnit (PHP ${{ matrix.php-version }}, Symfony ${{ matrix.symfony-version }} + ${{ matrix.dependencies }} deps)'
19-
runs-on: "ubuntu-20.04"
19+
runs-on: "ubuntu-24.04"
2020

2121
strategy:
2222
fail-fast: false
@@ -33,7 +33,7 @@ jobs:
3333
- 'highest'
3434
steps:
3535
- name: "Checkout"
36-
uses: "actions/checkout@v2"
36+
uses: "actions/checkout@v5"
3737
with:
3838
fetch-depth: 2
3939

.github/workflows/coding-standards.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
coding-standards:
1111
name: "Coding Standards"
12-
runs-on: "ubuntu-20.04"
12+
runs-on: "ubuntu-24.04"
1313

1414
strategy:
1515
matrix:
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: "Checkout"
21-
uses: "actions/checkout@v2"
21+
uses: "actions/checkout@v5"
2222

2323
- name: "Install PHP"
2424
uses: "shivammathur/setup-php@v2"
@@ -29,7 +29,7 @@ jobs:
2929
extensions: pdo_sqlite
3030

3131
- name: "Install dependencies with Composer"
32-
uses: "ramsey/composer-install@v1"
32+
uses: "ramsey/composer-install@v3"
3333

3434
- name: "Run PHP_CodeSniffer"
3535
run: "vendor/bin/phpcs"

0 commit comments

Comments
 (0)