mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 03:02:01 -04:00
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [github/codeql-action](https://github.com/github/codeql-action) | `4.35.4` | `4.36.0` | | [alexwilson/enable-github-automerge-action](https://github.com/alexwilson/enable-github-automerge-action) | `2.0.0` | `3.0.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6.0.0` | `6.0.1` | | [LizardByte/actions](https://github.com/lizardbyte/actions) | `2026.417.35446` | `2026.524.145234` | | [actions/stale](https://github.com/actions/stale) | `10.2.0` | `10.3.0` | Updates `github/codeql-action` from 4.35.4 to 4.36.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](68bde559de...7211b7c807) Updates `alexwilson/enable-github-automerge-action` from 2.0.0 to 3.0.0 - [Release notes](https://github.com/alexwilson/enable-github-automerge-action/releases) - [Changelog](https://github.com/alexwilson/enable-github-automerge-action/blob/main/CHANGELOG.md) - [Commits](56e3117d1a...2c32e18a76) Updates `codecov/codecov-action` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](57e3a136b7...e79a6962e0) Updates `LizardByte/actions` from 2026.417.35446 to 2026.524.145234 - [Release notes](https://github.com/lizardbyte/actions/releases) - [Commits](4125866b7b...25babf9f2e) Updates `actions/stale` from 10.2.0 to 10.3.0 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](b5d41d4e1d...eb5cf3af3a) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: alexwilson/enable-github-automerge-action dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: LizardByte/actions dependency-version: 2026.524.145234 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/stale dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
234 lines
7.2 KiB
YAML
234 lines
7.2 KiB
YAML
# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: MIT
|
|
name: Psalm static code analysis
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
- stable*
|
|
paths:
|
|
- '.github/workflows/static-code-analysis.yml'
|
|
- '**.php'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: static-code-analysis-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
changes:
|
|
runs-on: ubuntu-latest-low
|
|
|
|
outputs:
|
|
src: ${{ steps.changes.outputs.src }}
|
|
|
|
steps:
|
|
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
|
|
id: changes
|
|
continue-on-error: true
|
|
with:
|
|
filters: |
|
|
src:
|
|
- '.github/workflows/**'
|
|
- '3rdparty/**'
|
|
- '**/appinfo/**'
|
|
- '**/lib/**'
|
|
- '**/templates/**'
|
|
- 'vendor/**'
|
|
- 'vendor-bin/**'
|
|
- 'composer.json'
|
|
- 'composer.lock'
|
|
- '**.php'
|
|
|
|
static-code-analysis:
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.src != 'false' && github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
with:
|
|
persist-credentials: false
|
|
submodules: true
|
|
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc #v2.37.1
|
|
timeout-minutes: 5
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: apcu,ctype,curl,dom,fileinfo,ftp,gd,imagick,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
|
coverage: none
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Composer install
|
|
run: composer i
|
|
|
|
- name: Psalm
|
|
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'
|
|
|
|
static-code-analysis-security:
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.src != 'false' && github.repository_owner != 'nextcloud-gmbh' }}
|
|
|
|
permissions:
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
with:
|
|
persist-credentials: false
|
|
submodules: true
|
|
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc #v2.37.1
|
|
timeout-minutes: 5
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: ctype,curl,dom,fileinfo,ftp,gd,imagick,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
|
coverage: none
|
|
|
|
- name: Composer install
|
|
run: composer i
|
|
|
|
- name: Psalm taint analysis
|
|
run: composer run psalm:security -- --threads=1 --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif
|
|
|
|
- name: Show potential changes in Psalm baseline
|
|
if: always()
|
|
run: git diff --exit-code -- . ':!lib/composer'
|
|
|
|
- name: Upload Security Analysis results to GitHub
|
|
if: always()
|
|
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3
|
|
with:
|
|
sarif_file: results.sarif
|
|
|
|
static-code-analysis-ocp:
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.src != 'false' && github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
with:
|
|
persist-credentials: false
|
|
submodules: true
|
|
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc #v2.37.1
|
|
timeout-minutes: 5
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: ctype,curl,dom,fileinfo,gd,imagick,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
|
coverage: none
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Composer install
|
|
run: composer i
|
|
|
|
- name: Psalm
|
|
run: composer run psalm:ocp -- --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'
|
|
|
|
static-code-analysis-ncu:
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.src != 'false' && github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
with:
|
|
persist-credentials: false
|
|
submodules: true
|
|
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc #v2.37.1
|
|
timeout-minutes: 5
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: ctype,curl,dom,fileinfo,gd,imagick,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
|
coverage: none
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Composer install
|
|
run: composer i
|
|
|
|
- name: Psalm
|
|
run: composer run psalm:ncu -- --threads=1 --monochrome --no-progress --output-format=github
|
|
|
|
static-code-analysis-strict:
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.src != 'false' && github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
with:
|
|
persist-credentials: false
|
|
submodules: true
|
|
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc #v2.37.1
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: ctype,curl,dom,fileinfo,gd,imagick,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
|
coverage: none
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Composer install
|
|
run: composer i
|
|
|
|
- name: Psalm
|
|
run: composer run psalm:strict -- --threads=1 --monochrome --no-progress --output-format=github
|
|
|
|
summary:
|
|
permissions:
|
|
contents: none
|
|
runs-on: ubuntu-latest-low
|
|
needs: [changes, static-code-analysis, static-code-analysis-security, static-code-analysis-ocp, static-code-analysis-ncu, static-code-analysis-strict]
|
|
|
|
if: always()
|
|
|
|
name: static-code-analysis-summary
|
|
|
|
steps:
|
|
- name: Summary status
|
|
run: |
|
|
if ${{ needs.changes.outputs.src != 'false' && (
|
|
needs.static-code-analysis-security.result != 'success' ||
|
|
(github.event_name != 'push' && (
|
|
needs.static-code-analysis.result != 'success' ||
|
|
needs.static-code-analysis-ocp.result != 'success' ||
|
|
needs.static-code-analysis-ncu.result != 'success' ||
|
|
needs.static-code-analysis-strict.result != 'success'
|
|
))
|
|
) }}; then
|
|
exit 1
|
|
fi
|