Scheduled Job: CodeQL Scan #25
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
# | |
# Shared Workflows - CodeQL Scan | |
# | |
# Reusable Workflows used: | |
# * Code Scan | |
# * Readme <https://github.com/entur/gha-security/blob/main/README-code-scan.md> | |
# * Owner: Team Sikkerhet | |
# * Slack: #talk-sikkerhet | |
# | |
# TODO: This file comes from entur/.github/workflow-templates/codeql.yml | |
# Adopt to your needs, this file is yours now. | |
# | |
name: "Scheduled Job: CodeQL Scan" | |
on: | |
schedule: | |
- cron: "0 3 * * 1-5" # Run Monday to Friday at 3AM UTC | |
jobs: | |
code-scan: | |
name: "CodeQL Scan" | |
uses: entur/gha-security/.github/workflows/code-scan.yml@v2 | |
secrets: inherit | |
with: | |
use_setup_gradle: true |