Minibatch algo and code refactoring #1
Workflow file for this run
This file contains hidden or 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
| # This file is owned by Product Security team. Please reach out to #ask_productsec if you need help. | ||
| name: Security Scan | ||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize] | ||
| schedule: | ||
| # NOTE: Cron schedule is randomized between repos to spread weekly executions across weekdays. | ||
| - cron: '42 0 * * 5' | ||
| env: | ||
| VERSION: "1.0.0" | ||
| LAST_UPDATED: "2024-10-22" | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
| pull-requests: read | ||
| jobs: | ||
| sast-scan: | ||
| uses: linkedin-actions/static-analysis-actions/.github/workflows/sast-scan.yaml@production | ||
|
Check failure on line 22 in .github/workflows/security-scan.yaml
|
||
| secrets: | ||
| WORKFLOW_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| GHA_TOKEN_INFOSEC_SAST_SEMGREP_V1: ${{ secrets.GHA_TOKEN_INFOSEC_SAST_SEMGREP_V1 }} | ||
| GHA_TOKEN_INFOSEC_SAST_CODEQL_V1: ${{ secrets.GHA_TOKEN_INFOSEC_SAST_CODEQL_V1 }} | ||