File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+
6
+ name : DevSkim
7
+
8
+ on :
9
+ push :
10
+ branches : ["main"]
11
+ pull_request :
12
+ branches : ["main"]
13
+ schedule :
14
+ - cron : " 0 0 * * 0"
15
+
16
+ permissions : {}
17
+
18
+ jobs :
19
+ lint :
20
+ name : DevSkim
21
+ runs-on : ubuntu-latest
22
+ permissions :
23
+ actions : read
24
+ contents : read
25
+ security-events : write
26
+ steps :
27
+ - name : Checkout code
28
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
29
+
30
+ - name : Run DevSkim scanner
31
+ uses : microsoft/DevSkim-Action@a6b6966a33b497cd3ae2ebc406edf8f4cc2feec6 # v1.0.15
32
+
33
+ - name : Upload DevSkim scan results to GitHub Security tab
34
+ uses : github/codeql-action/upload-sarif@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
35
+ with :
36
+ sarif_file : devskim-results.sarif
You can’t perform that action at this time.
0 commit comments