Scorecards supply-chain security #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# https://openssf.org/blog/2022/01/19/reducing-security-risks-in-open-source-software-at-scale-scorecards-launches-v4/ | |
name: Scorecards supply-chain security | |
on: | |
# Only the default branch is supported. | |
branch_protection_rule: | |
schedule: | |
# Weekly on Saturdays. | |
- cron: '30 1 * * 6' | |
workflow_dispatch: | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
scorecard-analysis: | |
name: Scorecards analysis | |
runs-on: ubuntu-latest | |
permissions: | |
# Needed to upload the results to code-scanning dashboard. | |
security-events: write | |
# Needed for GitHub OIDC token if publish_results is true | |
id-token: write | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: "Run analysis" | |
uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534 | |
with: | |
results_file: scorecard-results.sarif | |
results_format: sarif | |
# (Optional) fine-grained personal access token. Uncomment the `repo_token` line below if: | |
# - you want to enable the Branch-Protection check on a *public* repository, or | |
# To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-fine-grained-pat-optional. | |
repo_token: ${{ secrets.SCORECARD_TOKEN }} | |
# | |
# Publish the results for public repositories to enable scorecard badges. For more details, see | |
# https://github.com/ossf/scorecard-action#publishing-results. | |
# For private repositories, `publish_results` will automatically be set to `false`, regardless | |
# of the value entered here. | |
publish_results: true | |
- name: "Upload artifact" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: SARIF file | |
path: scorecard-results.sarif | |
retention-days: 7 | |
# Upload the results to GitHub's code scanning dashboard. | |
- name: "Upload to code-scanning" | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: scorecard-results.sarif | |
category: ossf-scorecard |