Skip to content

Commit 478dd96

Browse files
committed
L12 support
1 parent 78d277f commit 478dd96

File tree

8 files changed

+213
-207
lines changed

8 files changed

+213
-207
lines changed

.github/workflows/back-end.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
syntax_errors:
2121
name: "1️⃣ Syntax errors"
22-
runs-on: "ubuntu-22.04"
22+
runs-on: "ubuntu-24.04"
2323
timeout-minutes: 5
2424
steps:
2525
-
@@ -55,7 +55,7 @@ jobs:
5555
- "lowest"
5656
- "locked"
5757
- "highest"
58-
runs-on: "ubuntu-22.04"
58+
runs-on: "ubuntu-24.04"
5959
timeout-minutes: 5
6060
steps:
6161
-
@@ -100,7 +100,7 @@ jobs:
100100
name: "3️⃣ Static Analysis"
101101
needs:
102102
- "syntax_errors"
103-
runs-on: "ubuntu-22.04"
103+
runs-on: "ubuntu-24.04"
104104
timeout-minutes: 5
105105
steps:
106106
-
@@ -146,7 +146,7 @@ jobs:
146146
name: "4️⃣ Coding Standards"
147147
needs:
148148
- "syntax_errors"
149-
runs-on: "ubuntu-22.04"
149+
runs-on: "ubuntu-24.04"
150150
timeout-minutes: 5
151151
steps:
152152
-

.github/workflows/front-end.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323
jobs:
2424
js_syntax_errors:
2525
name: "𝟏 JavaScript Syntax Errors"
26-
runs-on: "ubuntu-22.04"
26+
runs-on: "ubuntu-24.04"
2727
timeout-minutes: 5
2828
steps:
2929
-
@@ -50,7 +50,7 @@ jobs:
5050
5151
scss_coding_standards:
5252
name: "𝟐 Sassy CSS Coding Standards"
53-
runs-on: "ubuntu-22.04"
53+
runs-on: "ubuntu-24.04"
5454
timeout-minutes: 5
5555
steps:
5656
-
@@ -77,7 +77,7 @@ jobs:
7777
needs:
7878
- "js_syntax_errors"
7979
- "scss_coding_standards"
80-
runs-on: "ubuntu-22.04"
80+
runs-on: "ubuntu-24.04"
8181
timeout-minutes: 5
8282
steps:
8383
-
@@ -104,7 +104,7 @@ jobs:
104104

105105
svg:
106106
name: "𝟓 SVG files"
107-
runs-on: "ubuntu-22.04"
107+
runs-on: "ubuntu-24.04"
108108
timeout-minutes: 1
109109
steps:
110110
-

.github/workflows/install-laravel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ jobs:
2424
fail-fast: true
2525
matrix:
2626
os:
27-
- "ubuntu-22.04"
27+
- "ubuntu-24.04"
2828
php:
2929
- "8.4"
3030
stability:
3131
- "prefer-stable"
3232
laravel:
3333
- "11.x"
34+
- "12.x"
3435

3536
runs-on: "${{ matrix.os }}"
3637

.github/workflows/reusable-integrity.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ concurrency:
3636
jobs:
3737
file:
3838
name: "File"
39-
runs-on: "ubuntu-22.04"
39+
runs-on: "ubuntu-24.04"
4040
timeout-minutes: 1
4141
steps:
4242
-
@@ -105,7 +105,7 @@ jobs:
105105

106106
cloc:
107107
name: "Lines of Code"
108-
runs-on: "ubuntu-22.04"
108+
runs-on: "ubuntu-24.04"
109109
timeout-minutes: 1
110110
steps:
111111
-
@@ -136,7 +136,7 @@ jobs:
136136
137137
commit:
138138
name: "Commit"
139-
runs-on: "ubuntu-22.04"
139+
runs-on: "ubuntu-24.04"
140140
timeout-minutes: 1
141141
steps:
142142
-
@@ -149,7 +149,7 @@ jobs:
149149
150150
git_archive:
151151
name: "Git archive"
152-
runs-on: "ubuntu-22.04"
152+
runs-on: "ubuntu-24.04"
153153
timeout-minutes: 1
154154
steps:
155155
-

.github/workflows/spelling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
jobs:
1919
typos_check:
2020
name: "文A Typos check"
21-
runs-on: "ubuntu-22.04"
21+
runs-on: "ubuntu-24.04"
2222
timeout-minutes: 1
2323
steps:
2424
-

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"php": "^8.3.0 || ^8.4.0",
1919
"ext-exif": "*",
2020
"ext-gd": "*",
21-
"laravel/framework": "^11.31"
21+
"laravel/framework": "^11.31 || ^12.0"
2222
},
2323
"require-dev": {
2424
"fakerphp/faker": "^1.23",
25-
"laravel/laravel": "^11.0",
25+
"laravel/laravel": "^12.0",
2626
"laravel/pint": "^1.6",
2727
"mockery/mockery": "^1.6",
28-
"larastan/larastan": "^2.7.0",
29-
"phpunit/phpunit": "^11.0.1"
28+
"larastan/larastan": "^3.0.0",
29+
"phpunit/phpunit": "^11.5.3"
3030
},
3131
"minimum-stability": "dev",
3232
"prefer-stable": true,

0 commit comments

Comments
 (0)