Run PHP under spaze/spaze so that PHP-created files owner matches the… #11962
Workflow file for this run
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
name: Dependency vulnz checker | |
on: | |
push: | |
schedule: | |
- cron: '25 */2 * * *' | |
workflow_dispatch: | |
jobs: | |
composer-vulnz: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
id: cache-db | |
with: | |
path: ~/.symfony/cache | |
key: db | |
- uses: symfonycorp/security-checker-action@v5 | |
with: | |
lock: site/composer.lock | |
composer-audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: composer --working-dir=site audit |