-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (43 loc) · 1.2 KB
/
codeql.yml
File metadata and controls
52 lines (43 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: "CodeQL"
on:
push:
branches: [ main ]
paths:
- 'cli/**/*.go'
pull_request:
branches: [ main ]
paths:
- 'cli/**/*.go'
schedule:
- cron: '0 0 * * 0' # Weekly on Sundays
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 45
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Initialize CodeQL
uses: github/codeql-action/init@9792ccaef0455e446c567163589397e8c3ac2e0d # v3
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@9792ccaef0455e446c567163589397e8c3ac2e0d # v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@9792ccaef0455e446c567163589397e8c3ac2e0d # v3
continue-on-error: true
with:
category: "/language:${{matrix.language}}"