diff options
author | Joas Schilling <coding@schilljs.com> | 2024-09-30 23:57:39 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-09-30 23:57:39 +0200 |
commit | 990ee44015da720acbcf22dfe583b181dd1655fd (patch) | |
tree | c9d5e11f8c4dd511bfa996d20b274fed7c2e66a5 /.github | |
parent | 95bafb49804ba893e40f3f367c55ef9b0fa9e963 (diff) | |
download | nextcloud-server-990ee44015da720acbcf22dfe583b181dd1655fd.tar.gz nextcloud-server-990ee44015da720acbcf22dfe583b181dd1655fd.zip |
ci: Don't upload output of normal psalm to GitHub Security section
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 1fd77dccea4..63ad51a26c6 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -34,18 +34,12 @@ jobs: run: composer i - name: Psalm - run: composer run psalm -- --threads=1 --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif + run: composer run psalm -- --threads=1 --monochrome --no-progress --output-format=github --update-baseline - name: Show potential changes in Psalm baseline if: always() run: git diff --exit-code -- . ':!lib/composer' - - name: Upload Analysis results to GitHub - if: always() - uses: github/codeql-action/upload-sarif@v3 - with: - sarif_file: results.sarif - static-code-analysis-security: runs-on: ubuntu-latest |