Skip to content

Commit 4726f06

Browse files
committed
Prepare dropping of PHP 7.4 from master
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent 5bdb855 commit 4726f06

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

workflow-templates/lint-php-cs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up php
2828
uses: shivammathur/setup-php@v2
2929
with:
30-
php-version: "7.4"
30+
php-version: 8.0
3131
coverage: none
3232

3333
- name: Install dependencies

workflow-templates/lint-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
php-versions: ["7.4", "8.0", "8.1"]
28+
php-versions: ['8.0', '8.1', '8.2']
2929

3030
name: php-lint
3131

workflow-templates/phpunit-mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
strategy:
4545
matrix:
46-
php-versions: ['7.4', '8.0', '8.1']
46+
php-versions: ['8.0', '8.1']
4747
server-versions: ['master']
4848

4949
services:

workflow-templates/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up php
3030
uses: shivammathur/setup-php@v2
3131
with:
32-
php-version: 7.4
32+
php-version: 8.0
3333
coverage: none
3434

3535
- name: Install dependencies

workflow-templates/update-nextcloud-ocp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: Update nextcloud/ocp
88
on:
99
workflow_dispatch:
1010
schedule:
11-
- cron: "5 2 * * 0"
11+
- cron: '5 2 * * 0'
1212

1313
jobs:
1414
update-nextcloud-ocp:
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
branches: ["master", "stable25", "stable24", "stable23"]
20+
branches: ['master', 'stable25', 'stable24', 'stable23']
2121

2222
name: update-nextcloud-ocp-${{ matrix.branches }}
2323

@@ -27,10 +27,10 @@ jobs:
2727
ref: ${{ matrix.branches }}
2828
submodules: true
2929

30-
- name: Set up php7.4
30+
- name: Set up php8.0
3131
uses: shivammathur/setup-php@v2
3232
with:
33-
php-version: 7.4
33+
php-version: 8.0
3434
extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
3535
coverage: none
3636

0 commit comments

Comments
 (0)