build(deps): bump github.com/aiven/go-api-schemas from 1.27.1-0.20230823111901-1e0306909d02 to 1.35.0 #2363
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: | |
pull_request: | |
branches: | |
- main | |
- v* | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
push: | |
branches: | |
- main | |
- v* | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
jobs: | |
codeql: | |
runs-on: ubuntu-latest | |
if: (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip workflows')) || github.event_name == 'push' | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- go | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- uses: github/codeql-action/init@v2 | |
with: | |
languages: '${{ matrix.language }}' | |
- uses: github/codeql-action/autobuild@v2 | |
- uses: github/codeql-action/analyze@v2 |