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.
5 name: Scorecard supply-chain security
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
15 branches: [ "master" ]
17 # Declare default permissions as read only.
22 name: Scorecard analysis
23 runs-on: ubuntu-latest
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).
31 - name: "Checkout code"
32 uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
34 persist-credentials: false
36 - name: "Run analysis"
37 uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534 # v2.3.3
39 results_file: results.sarif
41 # (Optional) "write" PAT token. Uncomment the `repo_token` line below if:
42 # - you want to enable the Branch-Protection check on a *public* repository, or
43 # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat.
44 # repo_token: ${{ secrets.SCORECARD_TOKEN }}
46 # Public repositories:
47 # - Publish results to OpenSSF REST API for easy access by consumers
48 # - Allows the repository to include the Scorecard badge.
49 # - See https://github.com/ossf/scorecard-action#publishing-results.
52 # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
53 # format to the repository Actions tab.
54 - name: "Upload artifact"
55 uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
61 # Upload the results to GitHub's code scanning dashboard.
62 - name: "Upload to code-scanning"
63 uses: github/codeql-action/upload-sarif@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
65 sarif_file: results.sarif