Skip to content

Commit

Permalink
L12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Feb 24, 2025
1 parent 78d277f commit 478dd96
Show file tree
Hide file tree
Showing 8 changed files with 213 additions and 207 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/back-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
syntax_errors:
name: "1️⃣ Syntax errors"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 5
steps:
-
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- "lowest"
- "locked"
- "highest"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 5
steps:
-
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
name: "3️⃣ Static Analysis"
needs:
- "syntax_errors"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 5
steps:
-
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
name: "4️⃣ Coding Standards"
needs:
- "syntax_errors"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 5
steps:
-
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/front-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
js_syntax_errors:
name: "𝟏 JavaScript Syntax Errors"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 5
steps:
-
Expand All @@ -50,7 +50,7 @@ jobs:
scss_coding_standards:
name: "𝟐 Sassy CSS Coding Standards"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 5
steps:
-
Expand All @@ -77,7 +77,7 @@ jobs:
needs:
- "js_syntax_errors"
- "scss_coding_standards"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 5
steps:
-
Expand All @@ -104,7 +104,7 @@ jobs:

svg:
name: "𝟓 SVG files"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 1
steps:
-
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/install-laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@ jobs:
fail-fast: true
matrix:
os:
- "ubuntu-22.04"
- "ubuntu-24.04"
php:
- "8.4"
stability:
- "prefer-stable"
laravel:
- "11.x"
- "12.x"

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

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:
jobs:
file:
name: "File"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 1
steps:
-
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:

cloc:
name: "Lines of Code"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 1
steps:
-
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
commit:
name: "Commit"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 1
steps:
-
Expand All @@ -149,7 +149,7 @@ jobs:
git_archive:
name: "Git archive"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 1
steps:
-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
typos_check:
name: "文A Typos check"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 1
steps:
-
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"php": "^8.3.0 || ^8.4.0",
"ext-exif": "*",
"ext-gd": "*",
"laravel/framework": "^11.31"
"laravel/framework": "^11.31 || ^12.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/laravel": "^11.0",
"laravel/laravel": "^12.0",
"laravel/pint": "^1.6",
"mockery/mockery": "^1.6",
"larastan/larastan": "^2.7.0",
"phpunit/phpunit": "^11.0.1"
"larastan/larastan": "^3.0.0",
"phpunit/phpunit": "^11.5.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down
Loading

0 comments on commit 478dd96

Please sign in to comment.