forked from Endeavors-of-National-Importance-LLC/OpenShell
-
Notifications
You must be signed in to change notification settings - Fork 0
168 lines (153 loc) · 5.77 KB
/
Copy pathcodeql.yml
File metadata and controls
168 lines (153 loc) · 5.77 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
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: CodeQL
on:
schedule:
- cron: "29 5 * * *"
workflow_dispatch:
workflow_call:
inputs:
candidate_ref:
description: Optional pre-release tag to scan instead of the triggering revision
default: ""
type: string
fail-on-findings:
description: Fail on HIGH/CRITICAL security findings (score at least 7.0)
default: false
type: boolean
permissions:
contents: read
security-events: write
concurrency:
group: codeql-${{ github.workflow }}-${{ inputs.candidate_ref || github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: CodeQL (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 90
env:
# Keep Rust test fixtures out of production-focused security results.
CODEQL_EXTRACTOR_RUST_OPTION_CARGO_CFG_OVERRIDES: "-test"
strategy:
fail-fast: false
matrix:
include:
- language: rust
build-mode: none
- language: go
build-mode: manual
- language: python
build-mode: none
- language: javascript-typescript
build-mode: none
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
id: checkout
with:
ref: ${{ inputs.candidate_ref && format('refs/tags/{0}', inputs.candidate_ref) || '' }}
persist-credentials: false
- name: Set up Go
if: matrix.language == 'go'
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: sdk/go/go.mod
cache-dependency-path: sdk/go/go.sum
- name: Initialize CodeQL
uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
config-file: ./.github/codeql/codeql-config.yml
- name: Build Go SDK
if: matrix.language == 'go'
working-directory: sdk/go
run: go build ./...
- name: Analyze
id: analyze
uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
with:
category: /language:${{ matrix.language }}
output: codeql-results
upload: never
- name: Summarize findings
id: findings
if: always()
env:
LANGUAGE: ${{ matrix.language }}
FAIL_ON_FINDINGS: ${{ inputs.fail-on-findings || false }}
shell: bash
run: |
set -euo pipefail
shopt -s globstar nullglob
sarif_files=(codeql-results/**/*.sarif)
{
echo "### CodeQL: $LANGUAGE"
echo
if [ "${#sarif_files[@]}" -eq 0 ]; then
echo "No SARIF report was produced."
exit 1
else
finding_count=$(jq -s '[.[].runs[].results[]] | length' "${sarif_files[@]}")
high_count=$(jq -s '
[ .[].runs[] | . as $run | .results[]
| select(all(.suppressions[]?; .status != "accepted"))
| .ruleId as $id
| ($run.tool.driver, $run.tool.extensions[]?) | .rules[]?
| select(.id == $id)
| select((.properties["security-severity"] // "0" | tonumber) >= 7)
] | length
' "${sarif_files[@]}")
echo "high_count=$high_count" >> "$GITHUB_OUTPUT"
echo "Findings: $finding_count"
echo "HIGH/CRITICAL: $high_count"
echo
echo "Fail on HIGH/CRITICAL: $FAIL_ON_FINDINGS"
fi
} >> "$GITHUB_STEP_SUMMARY"
- name: Upload SARIF to Code Scanning
if: steps.analyze.outcome == 'success'
uses: github/codeql-action/upload-sarif@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
with:
sarif_file: codeql-results
ref: ${{ inputs.candidate_ref && format('refs/tags/{0}', inputs.candidate_ref) || '' }}
sha: ${{ inputs.candidate_ref && steps.checkout.outputs.commit || '' }}
category: /language:${{ matrix.language }}
- name: Upload SARIF
if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: codeql-${{ matrix.language }}-${{ github.run_id }}
path: codeql-results
if-no-files-found: ignore
retention-days: 14
- name: Enforce HIGH/CRITICAL threshold
if: ${{ !cancelled() && steps.findings.outcome == 'success' }}
env:
HIGH_COUNT: ${{ steps.findings.outputs.high_count }}
FAIL_ON_FINDINGS: ${{ inputs.fail-on-findings || false }}
run: |
if [ "$HIGH_COUNT" -gt 0 ]; then
if [ "$FAIL_ON_FINDINGS" = "true" ]; then
echo "::error::CodeQL reported $HIGH_COUNT HIGH/CRITICAL findings."
exit 1
fi
echo "::warning::CodeQL reported $HIGH_COUNT HIGH/CRITICAL findings; enforcement is disabled."
fi
result:
name: ${{ inputs.fail-on-findings && 'OpenShell / CodeQL' || 'OpenShell / CodeQL (informational)' }}
if: always()
needs: analyze
runs-on: ubuntu-latest
permissions: {}
steps:
- name: Evaluate analyzer execution
env:
ANALYZE_RESULT: ${{ needs.analyze.result }}
shell: bash
run: |
if [ "$ANALYZE_RESULT" != "success" ]; then
echo "::error::CodeQL execution or the configured finding threshold failed."
exit 1
fi
echo "All CodeQL analyzers completed and the configured finding threshold passed."