diff options
author | Joas Schilling <coding@schilljs.com> | 2023-06-01 23:47:21 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-06-01 23:47:21 +0200 |
commit | 373147ac0212615d1739f6d2ece7698b63be7a9d (patch) | |
tree | d10a7181737ac53926e411cf58147dc45395fc46 /.github | |
parent | 9f1d497a0b4dbda86e676a3a55758bc2909cc781 (diff) | |
download | nextcloud-server-373147ac0212615d1739f6d2ece7698b63be7a9d.tar.gz nextcloud-server-373147ac0212615d1739f6d2ece7698b63be7a9d.zip |
fix(CI): Temporary workaround - Run Psalm CI with 1 thread only so it finishes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 6f18f77c48e..65a414f6abf 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -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() |