feat: tries to reset the doctrine manager in case of an exception #190
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: "Check dependencies vulnerability" | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- develop | |
workflow_dispatch: ~ | |
jobs: | |
dependencies-vulnerability: | |
name: "Check dependencies vulnerability" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
tools: composer:v2 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Check dependencies vulnerability | |
uses: symfonycorp/security-checker-action@v3 | |
- name: Check dependencies vulnerability with Composer | |
run: composer audit |