Test Gradle composite cache action [do not merge] #54
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
| # Reusable Workflows see: https://github.com/entur/gha-security/blob/main/README-code-scan.md | |
| name: CodeQL Scan | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| push: | |
| branches: | |
| - "main" | |
| schedule: | |
| - cron: "0 4 * * TUE" # Run Monday at 3AM UTC | |
| jobs: | |
| code-scan: | |
| name: CodeQL Scan | |
| uses: entur/gha-security/.github/workflows/code-scan.yml@v2 | |
| # no secrets necessary | |
| permissions: # some of these only apply when running on the main branch | |
| actions: read | |
| contents: write | |
| pull-requests: write | |
| security-events: write | |
| issues: write |