|
| 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: Scorecard supply-chain security |
| 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: '34 6 * * 6' |
| 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 if using Code scanning alerts |
| 26 | + security-events: write |
| 27 | + # Needed for GitHub OIDC token if publish_results is true |
| 28 | + id-token: write |
| 29 | + |
| 30 | + steps: |
| 31 | + - name: "Checkout code" |
| 32 | + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 |
| 33 | + with: |
| 34 | + persist-credentials: false |
| 35 | + |
| 36 | + - name: "Run analysis" |
| 37 | + uses: ossf/scorecard-action@80e868c13c90f172d68d1f4501dee99e2479f7af # v2.1.3 |
| 38 | + with: |
| 39 | + results_file: results.sarif |
| 40 | + results_format: sarif |
| 41 | + # (Optional) fine-grained personal access 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-fine-grained-pat-optional. |
| 44 | + # repo_token: ${{ secrets.SCORECARD_TOKEN }} |
| 45 | + |
| 46 | + # Publish the results for public repositories to enable scorecard badges. For more details, see |
| 47 | + # https://github.com/ossf/scorecard-action#publishing-results. |
| 48 | + # For private repositories, `publish_results` will automatically be set to `false`, regardless |
| 49 | + # of the value entered here. |
| 50 | + publish_results: true |
| 51 | + |
| 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@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 |
| 56 | + with: |
| 57 | + name: SARIF file |
| 58 | + path: results.sarif |
| 59 | + retention-days: 5 |
| 60 | + |
| 61 | + # required for Code scanning alerts |
| 62 | + - name: "Upload SARIF results to code scanning" |
| 63 | + uses: github/codeql-action/upload-sarif@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6 |
| 64 | + with: |
| 65 | + sarif_file: results.sarif |
0 commit comments