security #714
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: security | |
on: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
security: | |
name: Security | |
runs-on: [self-hosted, Linux, x64] | |
steps: | |
- name: Setup Workspace | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Scan Packages For Vulnerability | |
uses: symfonycorp/security-checker-action@v5 |