build(deps): bump docker/docs from 919a9b9104a34a40b30d116529bcce589a544d1c to c70bc63d7f6ffee87d7c9cf0a9f5795db102eda8 #257
Workflow file for this run
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: codeql | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'v[0-9]*' | |
pull_request: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
env: | |
GO_VERSION: 1.21.6 | |
jobs: | |
codeql: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- | |
name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: go | |
- | |
name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- | |
name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:go" |