1
+ name : Scorecard supply-chain security
2
+ on :
3
+ # For Branch-Protection check. Only the default branch is supported. See
4
+ # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
5
+ branch_protection_rule :
6
+ # To guarantee Maintained check is occasionally updated. See
7
+ # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
8
+ schedule :
9
+ - cron : ' 0 */12 * * *'
10
+ push :
11
+ branches : [ "master" ]
12
+
13
+ # Declare default permissions as read only.
14
+ permissions : read-all
15
+
16
+ jobs :
17
+ analysis :
18
+ name : Scorecard analysis
19
+ runs-on : ubuntu-latest
20
+ permissions :
21
+ # Needed to upload the results to code-scanning dashboard.
22
+ security-events : write
23
+ # Needed to publish results and get a badge (see publish_results below).
24
+ id-token : write
25
+
26
+ steps :
27
+ - name : " Checkout code"
28
+ uses : actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
29
+ with :
30
+ persist-credentials : false
31
+
32
+ - name : " Run analysis"
33
+ uses : ossf/scorecard-action@99c53751e09b9529366343771cc321ec74e9bd3d # v2.0.6
34
+ with :
35
+ results_file : results.sarif
36
+ results_format : sarif
37
+ # Public repositories:
38
+ # - Publish results to OpenSSF REST API for easy access by consumers
39
+ # - Allows the repository to include the Scorecard badge.
40
+ # - See https://github.com/ossf/scorecard-action#publishing-results.
41
+ # For private repositories:
42
+ # - `publish_results` will always be set to `false`, regardless
43
+ # of the value entered here.
44
+ publish_results : true
45
+
46
+ # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
47
+ # format to the repository Actions tab.
48
+ - name : " Upload artifact"
49
+ uses : actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
50
+ with :
51
+ name : SARIF file
52
+ path : results.sarif
53
+ retention-days : 5
54
+
55
+ # Upload the results to GitHub's code scanning dashboard.
56
+ - name : " Upload to code-scanning"
57
+ uses : github/codeql-action/upload-sarif@807578363a7869ca324a79039e6db9c843e0e100 # v2.1.27
58
+ with :
59
+ sarif_file : results.sarif
0 commit comments