Skip to content

Commit dfde85b

Browse files
authored
ci: update github runner image version because latest is two years old (#81)
Update the Github runner image version from `latest` = `ubuntu-22.04` to `ubuntu-24.04`. Both versions are LTS but the latter includes PHP 8.3 which is compatible with our composer requirements.
1 parent 8a466ad commit dfde85b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
test:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010

1111
steps:
1212
- name: Checkout code
@@ -25,7 +25,7 @@ jobs:
2525
run: phpunit
2626

2727
lint:
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-24.04
2929

3030
steps:
3131
- name: Checkout code
@@ -45,7 +45,7 @@ jobs:
4545
run: pint --test
4646

4747
pre-commit:
48-
runs-on: ubuntu-latest
48+
runs-on: ubuntu-24.04
4949

5050
steps:
5151
- name: Checkout code

0 commit comments

Comments
 (0)