aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-09-22 08:38:31 +0200
committerprovokateurin <kate@provokateurin.de>2024-09-23 11:20:15 +0200
commit7bf75b9724032f542bd3e242a5de90b4045631be (patch)
treea40332f15eb1c4537d025918cc49b7eb05c6b629 /.github
parent81216ed24955e9adf01d341368e198336f3e2438 (diff)
downloadnextcloud-server-7bf75b9724032f542bd3e242a5de90b4045631be.tar.gz
nextcloud-server-7bf75b9724032f542bd3e242a5de90b4045631be.zip
fix(psalm): Enable findUnusedBaselineEntrybackport/48266/stable29
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/static-code-analysis.yml2
-rw-r--r--.github/workflows/update-psalm-baseline.yml67
2 files changed, 1 insertions, 68 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml
index c5e9cced1a9..0e294d43214 100644
--- a/.github/workflows/static-code-analysis.yml
+++ b/.github/workflows/static-code-analysis.yml
@@ -64,7 +64,7 @@ jobs:
run: composer i
- name: Psalm taint analysis
- run: composer run psalm:ci -- --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 --ignore-baseline
- name: Upload Security Analysis results to GitHub
if: always()
diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml
deleted file mode 100644
index d2041c294c7..00000000000
--- a/.github/workflows/update-psalm-baseline.yml
+++ /dev/null
@@ -1,67 +0,0 @@
-name: Update Psalm baseline
-
-on:
- workflow_dispatch:
- schedule:
- - cron: "5 2 * * *"
-
-jobs:
- update-psalm-baseline:
- runs-on: ubuntu-latest
-
- if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
-
- strategy:
- fail-fast: false
- matrix:
- branches: ["master", "stable28", "stable27", "stable26"]
-
- name: update-psalm-baseline-${{ matrix.branches }}
-
- steps:
- - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- with:
- ref: ${{ matrix.branches }}
- submodules: true
-
- - name: Set up php
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
- with:
- php-version: '8.0'
- 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 }}
-
- - name: Composer install
- run: composer install
-
- - name: Psalm
- run: composer run psalm:ci -- --monochrome --no-progress --output-format=text --update-baseline
- continue-on-error: true
-
- - name: Psalm OCP
- run: composer run psalm:ci -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline
- continue-on-error: true
-
- - name: Reset composer
- run: |
- git clean -f lib/composer
- git checkout composer.json composer.lock lib/composer
-
- - name: Create Pull Request
- uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc
- with:
- token: ${{ secrets.COMMAND_BOT_PAT }}
- commit-message: Update psalm baseline
- committer: GitHub <noreply@github.com>
- author: nextcloud-command <nextcloud-command@users.noreply.github.com>
- signoff: true
- branch: automated/noid/${{ matrix.branches }}-update-psalm-baseline
- title: "[${{ matrix.branches }}] Update psalm-baseline.xml"
- body: |
- Auto-generated update psalm-baseline.xml with fixed psalm warnings
- labels: |
- automated pr
- 3. to review
- team-reviewers: server-backend