Skip to content

Commit afecd58

Browse files
committed
updates
1 parent 8e37171 commit afecd58

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/back-end.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ 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
-
2626
name: "Set up PHP"
2727
uses: "shivammathur/setup-php@v2"
2828
with:
29-
php-version: "8.2"
29+
php-version: "8.4"
3030
extensions: "dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo, exif"
3131
coverage: "none"
3232
tools: "parallel-lint"
@@ -51,12 +51,12 @@ jobs:
5151
fail-fast: false
5252
matrix:
5353
php-version:
54-
- "8.2"
54+
- "8.4"
5555
- "8.3"
5656
dependencies:
5757
- "lowest"
5858
- "highest"
59-
runs-on: "ubuntu-22.04"
59+
runs-on: "ubuntu-24.04"
6060
timeout-minutes: 5
6161
steps:
6262
-
@@ -91,7 +91,7 @@ jobs:
9191
name: "Send coverage to Coveralls"
9292
env:
9393
COVERALLS_REPO_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
94-
if: "${{ env.COVERALLS_REPO_TOKEN && matrix.php-version == '8.2' && matrix.dependencies == 'locked' }}"
94+
if: "${{ env.COVERALLS_REPO_TOKEN && matrix.php-version == '8.4' && matrix.dependencies == 'locked' }}"
9595
run: |
9696
wget --no-verbose \
9797
"https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar"
@@ -101,14 +101,14 @@ jobs:
101101
name: "3️⃣ Static Analysis"
102102
needs:
103103
- "syntax_errors"
104-
runs-on: "ubuntu-22.04"
104+
runs-on: "ubuntu-24.04"
105105
timeout-minutes: 5
106106
steps:
107107
-
108108
name: "Set up PHP"
109109
uses: "shivammathur/setup-php@v2"
110110
with:
111-
php-version: "8.2"
111+
php-version: "8.4"
112112
extensions: "dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo, exif"
113113
coverage: "none"
114114
-
@@ -147,14 +147,14 @@ jobs:
147147
name: "4️⃣ Coding Standards"
148148
needs:
149149
- "syntax_errors"
150-
runs-on: "ubuntu-22.04"
150+
runs-on: "ubuntu-24.04"
151151
timeout-minutes: 5
152152
steps:
153153
-
154154
name: "Set up PHP"
155155
uses: "shivammathur/setup-php@v2"
156156
with:
157-
php-version: "8.2"
157+
php-version: "8.4"
158158
extensions: "dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo, exif"
159159
coverage: "none"
160160
tools: "phpcs,cs2pr"

0 commit comments

Comments
 (0)