diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-12-23 20:03:08 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-05-03 10:10:28 +0200 |
commit | ab3424ad448bcd4e5a10c286c3ab9b8b6e02d9c0 (patch) | |
tree | 6f6394cec7137f4dafadf6b8fbe1107962bdc16a /.github | |
parent | a31274623858ed48c4dc86bf042eef75afdafb2a (diff) | |
download | nextcloud-server-ab3424ad448bcd4e5a10c286c3ab9b8b6e02d9c0.tar.gz nextcloud-server-ab3424ad448bcd4e5a10c286c3ab9b8b6e02d9c0.zip |
Add ext-zip as platform dependency
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/oci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/psalm-github.yml | 1 | ||||
-rw-r--r-- | .github/workflows/psalm-security.yml | 1 | ||||
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 2 | ||||
-rw-r--r-- | .github/workflows/update-psalm-baseline.yml | 1 |
6 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b4037759b3c..8fdd2948000 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,6 +15,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php-versions }} + extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Lint run: composer run lint @@ -29,6 +30,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 + extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none tools: cs2pr - name: Install dependencies diff --git a/.github/workflows/oci.yml b/.github/workflows/oci.yml index 31614b8f38f..04d1dfdbab7 100644 --- a/.github/workflows/oci.yml +++ b/.github/workflows/oci.yml @@ -41,7 +41,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, oci8 + extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,oci8,openssl,pdo_sqlite,posix,sqlite,xml,zip tools: phpunit:8.5.2 coverage: none diff --git a/.github/workflows/psalm-github.yml b/.github/workflows/psalm-github.yml index ef35c39cd67..29e3f9db468 100644 --- a/.github/workflows/psalm-github.yml +++ b/.github/workflows/psalm-github.yml @@ -19,6 +19,7 @@ jobs: uses: docker://vimeo/psalm-github-actions continue-on-error: true with: + composer_ignore_platform_reqs: false report_file: results.sarif - name: Upload Analysis results to GitHub uses: github/codeql-action/upload-sarif@v1 diff --git a/.github/workflows/psalm-security.yml b/.github/workflows/psalm-security.yml index 0e19cda2d33..99f90681feb 100644 --- a/.github/workflows/psalm-security.yml +++ b/.github/workflows/psalm-security.yml @@ -19,6 +19,7 @@ jobs: uses: docker://vimeo/psalm-github-actions with: security_analysis: true + composer_ignore_platform_reqs: false report_file: results.sarif - name: Upload Security Analysis results to GitHub uses: github/codeql-action/upload-sarif@v1 diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 4057adbe8d7..fb415b585ec 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -17,6 +17,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 + extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Composer install run: composer i @@ -42,6 +43,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 + extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Composer install run: composer i diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml index ac0bc907aff..c9ca2e85a6c 100644 --- a/.github/workflows/update-psalm-baseline.yml +++ b/.github/workflows/update-psalm-baseline.yml @@ -19,6 +19,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 + extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Composer install run: composer i |