Fix worker-src CSP #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-License-Identifier: MIT | |
name: Psalm static code analysis | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: static-code-analysis-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
static-code-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Nextcloud server | |
uses: actions/checkout@v4 | |
with: | |
repository: nextcloud/server | |
ref: stable28 | |
submodules: true | |
- name: Checkout epubviewer app | |
uses: actions/checkout@v4 | |
with: | |
path: apps/epubviewer | |
submodules: true | |
- name: Set up php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: apcu,ctype,curl,dom,fileinfo,ftp,gd,iconv,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip | |
coverage: none | |
- name: Composer install | |
working-directory: apps/epubviewer | |
run: composer install | |
- name: Psalm | |
working-directory: apps/epubviewer | |
run: composer run psalm:ci -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif | |
- name: Show potential changes in Psalm baseline | |
working-directory: apps/epubviewer | |
if: always() | |
run: git diff -- . ':!lib/composer' | |
# - name: Upload Analysis results to CodeQL | |
# if: always() | |
# uses: github/codeql-action/upload-sarif@v3 | |
# with: | |
# sarif_file: apps/epubviewer/results.sarif | |
static-code-analysis-security: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout epubviewer app | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up php | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: '8.1' | |
extensions: ctype,curl,dom,fileinfo,ftp,gd,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip | |
coverage: none | |
- name: Composer install | |
run: composer install | |
- name: Psalm taint analysis | |
run: composer run psalm -- --monochrome --no-progress --output-format=github --report=results.sarif --taint-analysis | |
# - name: Upload Security Analysis results to GitHub | |
# if: always() | |
# uses: github/codeql-action/upload-sarif@v3 | |
# with: | |
# sarif_file: results.sarif |