Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-11-07 17:57:57 +0300
committerJoas Schilling <coding@schilljs.com>2022-11-08 14:15:12 +0300
commit247be5f7de4a6f918d5f3201e046d4882502c3a5 (patch)
tree26d92b15afe9b418c447f233deefe22001d5d1a2
parent7de285ecc54e5525427d5a8e41dd80227e1a6c81 (diff)
🌇 Bump min PHP version in CI to 8.0
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/appstore-build-publish.yml4
-rw-r--r--.github/workflows/lint-php-cs.yml2
-rw-r--r--.github/workflows/lint-php.yml2
-rw-r--r--.github/workflows/phpunit.yml8
-rw-r--r--.github/workflows/psalm.yml2
-rw-r--r--.github/workflows/update-nextcloud-ocp.yml8
6 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/appstore-build-publish.yml b/.github/workflows/appstore-build-publish.yml
index fc04383c6..286d5d333 100644
--- a/.github/workflows/appstore-build-publish.yml
+++ b/.github/workflows/appstore-build-publish.yml
@@ -10,7 +10,7 @@ on:
types: [published]
env:
- PHP_VERSION: 7.4
+ PHP_VERSION: 8.0
jobs:
build_and_publish:
@@ -27,7 +27,7 @@ jobs:
- name: Set app env
run: |
- # Split and keep last
+ # Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV
diff --git a/.github/workflows/lint-php-cs.yml b/.github/workflows/lint-php-cs.yml
index 9f4bad17a..af585a80c 100644
--- a/.github/workflows/lint-php-cs.yml
+++ b/.github/workflows/lint-php-cs.yml
@@ -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
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index 0509e800e..7e3c8cb0c 100644
--- a/.github/workflows/lint-php.yml
+++ b/.github/workflows/lint-php.yml
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- php-versions: ["7.4", "8.0", "8.1"]
+ php-versions: ['7.4', '8.0', '8.1']
name: php-lint
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index ee90a1c48..d901f15e3 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -27,7 +27,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: ['7.4']
+ php-versions: ['8.0']
databases: ['sqlite']
server-versions: ['master']
@@ -88,7 +88,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: ['7.4', '8.0', "8.1"]
+ php-versions: ['7.4', '8.0', '8.1']
databases: ['mysql']
server-versions: ['master']
@@ -163,7 +163,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: ['7.4']
+ php-versions: ['8.0']
databases: ['pgsql']
server-versions: ['master']
@@ -235,7 +235,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: ['7.4']
+ php-versions: ['8.0']
databases: ['oci']
server-versions: ['master']
diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml
index 34d6a6f6c..f01e46dc5 100644
--- a/.github/workflows/psalm.yml
+++ b/.github/workflows/psalm.yml
@@ -23,7 +23,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
diff --git a/.github/workflows/update-nextcloud-ocp.yml b/.github/workflows/update-nextcloud-ocp.yml
index a396b6f87..359772c93 100644
--- a/.github/workflows/update-nextcloud-ocp.yml
+++ b/.github/workflows/update-nextcloud-ocp.yml
@@ -8,7 +8,7 @@ name: Update nextcloud/ocp
on:
workflow_dispatch:
schedule:
- - cron: "5 4 * * 0"
+ - cron: '5 4 * * 0'
jobs:
update-nextcloud-ocp:
@@ -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 }}
@@ -27,10 +27,10 @@ jobs:
ref: ${{ matrix.branches }}
submodules: true
- - name: Set up php7.4
+ - name: Set up PHP 8.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