-
Notifications
You must be signed in to change notification settings - Fork 40
213 lines (184 loc) · 8.42 KB
/
codeql.yml
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
name: CodeQL
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
# The branches below must be a subset of the branches above
branches:
- master
schedule:
# Every Wednesday at 04:20
- cron: 20 4 * * 3
# We set `concurrency` to prevent having this workflow being run on code that is not up-to-date on a PR (a user make multiple push in a quick manner).
# But on the main branch, we don't want that behavior.
# Having the workflow run on each merge commit is something we would like, that could help us where a regression was made and missed by previous checks.
#
# For that we use `head_ref` that is only defined on `pull-request` and fallback to `run_id` (this is a counter, so it's value is unique between workflow call).
concurrency:
group: codeql-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
security-events: write
jobs:
python-analyze:
name: 🐍 Python static code Analysis
runs-on: ubuntu-22.04
env:
poetry-version: 1.5.1
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin v4.1.7
timeout-minutes: 5
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # pin v3.0.2
id: changes
with:
filters: .github/filters/codeql.yml
- name: Check modified path that require `python-analysis` to run
id: should-run-python-analysis
# We want the job to run when:
# - modifying python code
# - in the merge queue
# - on the main branch
if: >-
steps.changes.outputs.python-analyze == 'true'
|| contains(github.ref, 'gh-readonly-queue')
|| github.ref == 'refs/heads/master'
run: echo "run=true" >> $GITHUB_OUTPUT
shell: bash
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
if: steps.should-run-python-analysis.outputs.run == 'true'
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
with:
languages: python
setup-python-dependencies: false
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- uses: ./.github/actions/setup-python-poetry
if: steps.should-run-python-analysis.outputs.run == 'true'
id: setup-python
with:
poetry-version: ${{ env.poetry-version }}
project-path: ./server
- name: Install python deps
if: steps.should-run-python-analysis.outputs.run == 'true'
run: |
poetry install
poetry run sh -c 'echo "CODEQL_PYTHON=$(which python)"' >> $GITHUB_ENV
working-directory: server
env:
POETRY_LIBPARSEC_BUILD_STRATEGY: no_build
- name: Perform CodeQL Analysis
if: steps.should-run-python-analysis.outputs.run == 'true'
uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
with:
category: /language:python
# Disabled till we fix Android with Vite
# see issue: #4395
# java-analyze:
# name: ☕ Java static code Analysis
# runs-on: ubuntu-22.04
# env:
# NDK_VERSION: 23.2.8568313
# SDK_VERSION: 30.0.3
# steps:
# - name: Checkout repository
# uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin v4.1.7
# timeout-minutes: 5
# - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # pin v3.0.2
# id: changes
# with:
# filters: .github/filters/codeql.yml
# - name: Check modified path that require `java-analysis` to run
# id: should-run-java-analysis
# if: >-
# steps.changes.outputs.java-analyze == 'true'
# || contains(github.ref, 'gh-readonly-queue')
# || github.ref == 'refs/heads/master'
# run: echo "run=true" >> $GITHUB_OUTPUT
# shell: bash
# - name: Add android cmdline tools to path
# if: steps.should-run-java-analysis.outputs.run == 'true'
# run: echo "$ANDROID_HOME/cmdline-tools/latest/bin" > $GITHUB_PATH
# - name: Install dependencies for Android
# if: steps.should-run-java-analysis.outputs.run == 'true'
# run: sdkmanager --install "ndk;${{ env.NDK_VERSION }}" "build-tools;${{ env.SDK_VERSION }}"
# - name: Install dependencies for ionic project
# if: steps.should-run-java-analysis.outputs.run == 'true'
# run: npm clean-install
# working-directory: client
# - name: Build ionic for Android
# if: steps.should-run-java-analysis.outputs.run == 'true'
# run: |
# npm run android:copy:release
# working-directory: client
# env:
# GRADLE_LIBPARSEC_BUILD_STRATEGY: no_build
# # Initializes the CodeQL tools for scanning.
# - name: Initialize CodeQL
# if: steps.should-run-java-analysis.outputs.run == 'true'
# uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
# with:
# languages: java
# # If you wish to specify custom queries, you can do so here or in a config file.
# # By default, queries listed here will override any specified in a config file.
# # Prefix the list here with "+" to use these queries and those in the config file.
# # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# # queries: security-extended,security-and-quality
# - name: Autobuild android
# if: steps.should-run-java-analysis.outputs.run == 'true'
# uses: github/codeql-action/autobuild@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
# with:
# working-directory: client/android
# env:
# GRADLE_LIBPARSEC_BUILD_STRATEGY: no_build
# - name: Perform CodeQL Analysis
# if: steps.should-run-java-analysis.outputs.run == 'true'
# uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
# with:
# category: /language:java
javascript-analyze:
name: 🌐 Javascript static code Analysis
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin v4.1.7
timeout-minutes: 5
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # pin v3.0.2
id: changes
with:
filters: .github/filters/codeql.yml
- name: Check modified path that require `javascript-analysis` to run
id: should-run-js-analysis
if: >-
steps.changes.outputs.js-analyze == 'true'
|| contains(github.ref, 'gh-readonly-queue')
|| github.ref == 'refs/heads/master'
run: echo "run=true" >> $GITHUB_OUTPUT
shell: bash
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
if: steps.should-run-js-analysis.outputs.run == 'true'
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
with:
languages: typescript
- name: Install dependencies for ionic project
if: steps.should-run-js-analysis.outputs.run == 'true'
run: npm clean-install
working-directory: client
- name: Autobuild for typescript
if: steps.should-run-js-analysis.outputs.run == 'true'
uses: github/codeql-action/autobuild@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
with:
working-directory: client
- name: Perform CodeQL Analysis
if: steps.should-run-js-analysis.outputs.run == 'true'
uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # pin v3.26.6
with:
category: /language:typescript