Weekly Security Scan #34
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
# To use this workflow, you must have GitHub Advanced Security (GHAS) enabled for your repository. | |
# Once the workflow has run, review the "Security" tab of your repository. | |
name: Weekly Security Scan | |
on: | |
schedule: | |
- cron: '29 04 * * 6' | |
permissions: | |
contents: read | |
jobs: | |
security-scan: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run security scan | |
uses: ./.github/workflows/composite/scan-code |