Perform CodeQL Analysis #126
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: "Perform CodeQL Analysis" | |
on: | |
schedule: | |
- cron: "16 16 */2 * *" | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #pin v4.1.6 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@9fdb3e49720b44c48891d036bb502feb25684276 #pin v3.25.6 | |
with: | |
languages: go | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@9fdb3e49720b44c48891d036bb502feb25684276 #pin v3.25.6 | |
with: | |
category: "/language:go" |