build(deps-dev): bump symfony/process from 5.4.8 to 5.4.46 #8
This file contains hidden or 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
name: "Security analysis" | |
on: | |
pull_request: ~ | |
workflow_dispatch: ~ | |
push: | |
branches: | |
- master | |
jobs: | |
security-analysis: | |
name: "security analysis" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "checkout" | |
uses: "actions/checkout@v2" | |
- name: "installing PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "7.4" | |
ini-values: memory_limit=-1 | |
tools: composer:v2, cs2pr | |
extensions: bcmath, mbstring, intl, sodium, json | |
- name: Install dependencies | |
run: ./tools/bin/project install_dependencies | |
- name: "running security analysis ( psalm )" | |
run: ./tools/bin/project security-analysis |