FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql/.github/workflows/query-list.yml at codeql-cli-2.27.1 · github/codeql · GitHub
github
/
codeql
Public
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
10.1k
Code
Issues
1k
Pull requests
470
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql
/
.github
/
workflows
/
query-list.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
43 lines (38 loc) · 1.09 KB
Breadcrumbs
codeql
/
.github
/
workflows
/
query-list.yml
Copy path
File metadata and controls
43 lines (38 loc) · 1.09 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
Build code scanning query list
on
:
push
:
branches
:
-
main
-
'
rc/**
'
tags
:
-
'
codeql-cli/*
'
pull_request
:
paths
:
-
'
.github/workflows/query-list.yml
'
-
'
.github/actions/fetch-codeql/action.yml
'
-
'
misc/scripts/generate-code-scanning-query-list.py
'
permissions
:
contents
:
read
jobs
:
build
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Clone self (github/codeql)
uses
:
actions/checkout@v5
with
:
path
:
codeql
-
name
:
Set up Python 3.8
uses
:
actions/setup-python@v4
with
:
python-version
:
3.8
-
name
:
Download CodeQL CLI
#
Look under the `codeql` directory, as this is where we checked out the `github/codeql` repo
uses
:
./codeql/.github/actions/fetch-codeql
-
name
:
Build code scanning query list
run
:
|
python codeql/misc/scripts/generate-code-scanning-query-list.py > code-scanning-query-list.csv
-
name
:
Upload code scanning query list
uses
:
actions/upload-artifact@v4
with
:
name
:
code-scanning-query-list
path
:
code-scanning-query-list.csv
Back
|
FazBrowse Home
|
New Git URL