mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-02 20:11:59 +08:00
d53c2b21cb
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v1...v2) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
602 B
YAML
25 lines
602 B
YAML
name: Psalm Security Analysis
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
psalm:
|
|
name: Psalm
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Psalm
|
|
uses: docker://ghcr.io/nextcloud/all-in-one-psalm
|
|
with:
|
|
relative_dir: php
|
|
security_analysis: true
|
|
composer_ignore_platform_reqs: false
|
|
report_file: results.sarif
|
|
- name: Upload Security Analysis results to GitHub
|
|
uses: github/codeql-action/upload-sarif@v2
|
|
with:
|
|
sarif_file: php/results.sarif
|