File tree 2 files changed +54
-3
lines changed
2 files changed +54
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+
3
+ on :
4
+ push :
5
+ branches : ["main"]
6
+ pull_request :
7
+ branches : ["main"]
8
+ schedule :
9
+ - cron : " 0 0 * * 1"
10
+
11
+ permissions :
12
+ contents : read
13
+
14
+ jobs :
15
+ analyze :
16
+ name : Analyze
17
+ runs-on : ubuntu-latest
18
+ permissions :
19
+ actions : read
20
+ contents : read
21
+ security-events : write
22
+
23
+ strategy :
24
+ fail-fast : false
25
+ matrix :
26
+ language : ["typescript"]
27
+
28
+ steps :
29
+ - name : Checkout code
30
+ uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
31
+
32
+ # Initializes the CodeQL tools for scanning.
33
+ - name : Initialize CodeQL
34
+ uses : github/codeql-action/init@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3.23.0
35
+ with :
36
+ languages : ${{ matrix.language }}
37
+
38
+ - name : Setup NodeJS
39
+ uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
40
+ with :
41
+ node-version : ${{ matrix.version }}
42
+ cache : " npm"
43
+ - name : Setup dependencies
44
+ uses : ./.github/actions/cached-node-modules
45
+ with :
46
+ nodeVersion : 20
47
+
48
+ - name : Perform CodeQL Analysis
49
+ uses : github/codeql-action/analyze@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3.23.0
50
+ with :
51
+ category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ babel==2.14.0 \
8
8
--hash =sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363 \
9
9
--hash =sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287
10
10
# via mkdocs-material
11
- certifi == 2023.11.17 \
12
- --hash =sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1 \
13
- --hash =sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474
11
+ certifi == 2024.7.4 \
12
+ --hash =sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b \
13
+ --hash =sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90
14
14
# via requests
15
15
charset-normalizer == 3.3.2 \
16
16
--hash =sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 \
You can’t perform that action at this time.
0 commit comments