Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/security-php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: PHP Security Check

on:
# Run automatically every Monday on midnight.
schedule:
- '0 0 * * 1'
# Run on pull requests only when composer.lock has changed.
pull_request:
paths:
- 'composer.lock'
# Allow manually triggering the workflow.
workflow_dispatch:

jobs:
check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/cache@v2
id: cache-db
with:
path: ~/.symfony/cache
key: db

- uses: symfonycorp/security-checker-action@v4