diff options
author | MichaIng <micha@dietpi.com> | 2022-12-06 22:53:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 22:53:40 +0100 |
commit | 35d67bdcf05388e25668de2c4c9b20acac6dda9e (patch) | |
tree | 40a9844872df77f566a4bc535a17d066227c73c6 /.github | |
parent | c685c22acae91161b0c2822c2d20158cde544a2c (diff) | |
download | nextcloud-server-35d67bdcf05388e25668de2c4c9b20acac6dda9e.tar.gz nextcloud-server-35d67bdcf05388e25668de2c4c9b20acac6dda9e.zip |
Update update-psalm-baseline workflow for NC25
and also update Psalm OCP baseline.
Additionally update the checkout action.
Signed-off-by: MichaIng <micha@dietpi.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/update-psalm-baseline.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml index 5e699f623af..42f2d7450e7 100644 --- a/.github/workflows/update-psalm-baseline.yml +++ b/.github/workflows/update-psalm-baseline.yml @@ -12,12 +12,12 @@ jobs: strategy: fail-fast: false matrix: - branches: ["master", "stable24", "stable23", "stable22"] + branches: ["master", "stable25", "stable24", "stable23"] name: update-psalm-baseline-${{ matrix.branches }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ matrix.branches }} submodules: true @@ -36,6 +36,10 @@ jobs: run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline continue-on-error: true + - name: Psalm OCP + run: composer run psalm -- -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 |