Skip to content

Commit

Permalink
Prepare dropping of PHP 7.4 from master
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Nov 7, 2022
1 parent 5bdb855 commit 4726f06
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion workflow-templates/lint-php-cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
php-version: 8.0
coverage: none

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.4", "8.0", "8.1"]
php-versions: ['8.0', '8.1', '8.2']

name: php-lint

Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/phpunit-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['8.0', '8.1']
server-versions: ['master']

services:
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
php-version: 8.0
coverage: none

- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions workflow-templates/update-nextcloud-ocp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Update nextcloud/ocp
on:
workflow_dispatch:
schedule:
- cron: "5 2 * * 0"
- cron: '5 2 * * 0'

jobs:
update-nextcloud-ocp:
Expand All @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
branches: ["master", "stable25", "stable24", "stable23"]
branches: ['master', 'stable25', 'stable24', 'stable23']

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

Expand All @@ -27,10 +27,10 @@ jobs:
ref: ${{ matrix.branches }}
submodules: true

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

Expand Down

0 comments on commit 4726f06

Please sign in to comment.