Skip to content

Commit

Permalink
Add PHP dependencies security check workflow (#2639)
Browse files Browse the repository at this point in the history
  • Loading branch information
elidrissidev authored Oct 2, 2022
1 parent e83f359 commit 7c3d194
Showing 1 changed file with 27 additions and 0 deletions.
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

0 comments on commit 7c3d194

Please sign in to comment.