File tree 1 file changed +41
-0
lines changed
1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow uses actions that are not certified by GitHub. They are provided
2
+ # by a third-party and are governed by separate terms of service, privacy
3
+ # policy, and support documentation.
4
+
5
+ name : OpenSSF scorecard
6
+ on :
7
+ # For Branch-Protection check. Only the default branch is supported. See
8
+ # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
9
+ branch_protection_rule :
10
+ # To guarantee Maintained check is occasionally updated. See
11
+ # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
12
+ schedule :
13
+ - cron : ' 36 22 * * 3'
14
+ push :
15
+ branches : [ "main" ]
16
+
17
+ # Declare default permissions as read only.
18
+ permissions : read-all
19
+
20
+ jobs :
21
+ analysis :
22
+ name : Scorecard analysis
23
+ runs-on : ubuntu-latest
24
+ permissions :
25
+ # Needed to upload the results to code-scanning dashboard.
26
+ security-events : write
27
+ # Needed to publish results and get a badge (see publish_results below).
28
+ id-token : write
29
+
30
+ steps :
31
+ - name : " Checkout code"
32
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
33
+ with :
34
+ persist-credentials : false
35
+
36
+ - name : " Run analysis"
37
+ uses : ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1
38
+ with :
39
+ results_file : results.sarif
40
+ results_format : sarif
41
+ publish_results : true
You can’t perform that action at this time.
0 commit comments