aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-06-02 00:25:19 +0200
committerGitHub <noreply@github.com>2023-06-02 00:25:19 +0200
commit07dee9788a459e704a3d5d8d64049cad91f877e7 (patch)
treed1a03265d388ff47312d0a2d462fa583fbe7f6c4 /.github/workflows
parent9f1d497a0b4dbda86e676a3a55758bc2909cc781 (diff)
parentd6ce50082eac112e247e3bb0d13066d0e5f4bdee (diff)
downloadnextcloud-server-07dee9788a459e704a3d5d8d64049cad91f877e7.tar.gz
nextcloud-server-07dee9788a459e704a3d5d8d64049cad91f877e7.zip
Merge pull request #38597 from nextcloud/techdebt/noid/run-psalm-ci-with-1-thread
fix(CI): Temporary workaround - Run Psalm CI with 1 thread only so it…
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/static-code-analysis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml
index 6f18f77c48e..22a1a69a977 100644
--- a/.github/workflows/static-code-analysis.yml
+++ b/.github/workflows/static-code-analysis.yml
@@ -23,7 +23,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
- extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
+ extensions: apcu,ctype,curl,dom,fileinfo,ftp,gd,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
coverage: none
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -32,7 +32,7 @@ jobs:
run: composer i
- name: Psalm
- run: composer run psalm -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif
+ run: composer run psalm:ci -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif
- name: Show potential changes in Psalm baseline
if: always()
@@ -64,7 +64,7 @@ jobs:
run: composer i
- name: Psalm taint analysis
- run: composer run psalm -- --monochrome --no-progress --output-format=github --report=results.sarif --taint-analysis
+ run: composer run psalm:ci -- --monochrome --no-progress --output-format=github --report=results.sarif --taint-analysis
- name: Upload Security Analysis results to GitHub
if: always()
@@ -94,7 +94,7 @@ jobs:
run: composer i
- name: Psalm
- run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline
+ run: composer run psalm:ci -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline
- name: Show potential changes in Psalm baseline
if: always()