-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (52 loc) · 1.42 KB
/
Copy pathcodeql.yml
File metadata and controls
61 lines (52 loc) · 1.42 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
52
53
54
55
56
57
58
59
60
61
# CodeQL Security Analysis
# Scans Go, JavaScript/TypeScript, and Python for security vulnerabilities
name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Run weekly on Monday at 06:00 UTC
- cron: "0 6 * * 1"
permissions:
actions: read
contents: read
security-events: write
jobs:
codeql:
name: codeql (${{ matrix.language }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [go, javascript-typescript, python]
include:
- language: go
build-mode: manual
- language: javascript-typescript
build-mode: none
- language: python
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go (for Go analysis)
if: matrix.language == 'go'
uses: actions/setup-go@v5
with:
go-version-file: go.work
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Build Go code
if: matrix.language == 'go'
run: |
go build ./platform/...
go build ./libs/...
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"