forked from agntcy/slim
-
Notifications
You must be signed in to change notification settings - Fork 0
171 lines (152 loc) · 6.15 KB
/
codeql.yml
File metadata and controls
171 lines (152 loc) · 6.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# Copyright AGNTCY Contributors (https://github.com/agntcy)
# SPDX-License-Identifier: Apache-2.0
---
name: ci-codeql-advanced
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '42 5 * * 6'
workflow_dispatch:
jobs:
analyze:
name: Analyze (${{ matrix.language }})
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
# required to fetch internal or private CodeQL packs
packages: read
# only required for workflows in private repositories
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: go
build-mode: autobuild
- language: rust
build-mode: none
- language: python
build-mode: none
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Disk cleanup
uses: ./.github/actions/cleanup-disk
- name: Log language being analyzed
run: |
echo "🔍 Starting CodeQL analysis for: ${{ matrix.language }}"
echo "Build mode: ${{ matrix.build-mode }}"
# Setup language environments BEFORE CodeQL initialization
- name: Set up Go
if: matrix.language == 'go'
uses: ./.github/actions/setup-go
with:
go-version: '1.25.5'
- name: Install buf CLI
if: matrix.language == 'go'
shell: bash
run: |
# Install buf for protobuf generation
curl -sSL "https://github.com/bufbuild/buf/releases/latest/download/buf-$(uname -s)-$(uname -m)" -o /tmp/buf
sudo mv /tmp/buf /usr/local/bin/buf
sudo chmod +x /usr/local/bin/buf
- name: Set up Rust
if: matrix.language == 'rust'
uses: ./.github/actions/setup-rust
with:
workspace: ./data-plane
- name: Set up Python
if: matrix.language == 'python'
uses: ./.github/actions/setup-python
with:
uv-install: 'true'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
queries: +security-extended,security-and-quality
config: |
name: "CodeQL Config"
queries:
- uses: security-extended
- uses: security-and-quality
query-filters:
- exclude:
# Helm values files use empty strings as defaults
id: js/empty-password-in-configuration-file
paths-ignore:
- "**/*.pb.go"
- "**/mock_*.go"
- "**/*_pb2.py"
- "**/*_pb2_grpc.py"
- "**/testdata/**"
- "**/vendor/**"
- "**/target/**"
- "**/examples/**"
- "**/testing/**"
- "**/tests/**"
- "**/*_test.go"
- "**/test_*.py"
- name: Install Python dependencies
if: matrix.language == 'python'
shell: bash
run: |
echo "📦 Installing Python dependencies..."
# Install dependencies for Python bindings
if [ -f "data-plane/python/bindings/pyproject.toml" ]; then
cd data-plane/python/bindings
uv sync || echo "Failed to sync Python bindings dependencies"
cd ../../..
fi
echo "✅ Python dependencies installed"
- name: Prepare Go environment for autobuild
if: matrix.language == 'go'
shell: bash
run: |
echo "Preparing Go environment for CodeQL autobuild..."
echo "Go version: $(go version)"
echo "GOPATH: $GOPATH"
echo "GOROOT: $GOROOT"
echo "Working directory: $(pwd)"
# Download Go module dependencies for control-plane modules
echo "Pre-downloading Go module dependencies..."
for module_dir in control-plane/common control-plane/control-plane control-plane/token-service; do
if [ -f "$module_dir/go.mod" ]; then
echo "Downloading deps for $module_dir"
(cd "$module_dir" && go mod download) || echo "Failed to download deps for $module_dir"
fi
done
echo "Go environment prepared for autobuild"
- name: Run manual build steps
if: matrix.build-mode == 'manual'
shell: bash
run: |
echo "❌ Manual build mode not configured for language: ${{ matrix.language }}"
echo "ℹ️ SLIM project uses autobuild for Go and Rust"
exit 1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
with:
category: "/language:${{matrix.language}}"