2022-03-14 22:43:04 +00:00
|
|
|
name: Scorecards supply-chain security
|
|
|
|
on:
|
|
|
|
# Only the default branch is supported.
|
|
|
|
branch_protection_rule:
|
|
|
|
schedule:
|
|
|
|
- cron: '17 3 * * 1'
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
# Declare default permissions as read only.
|
|
|
|
permissions: read-all
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
analysis:
|
|
|
|
name: Scorecards analysis
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
# Needed to upload the results to code-scanning dashboard.
|
|
|
|
security-events: write
|
2022-09-16 12:45:53 +00:00
|
|
|
id-token: write
|
2022-03-14 22:43:04 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: "Checkout code"
|
2024-10-08 15:41:09 +00:00
|
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
|
2022-03-14 22:43:04 +00:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
|
|
|
|
- name: "Run analysis"
|
2024-07-29 15:47:17 +00:00
|
|
|
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46
|
2022-03-14 22:43:04 +00:00
|
|
|
with:
|
|
|
|
results_file: results.sarif
|
|
|
|
results_format: sarif
|
|
|
|
# Publish the results 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
|
|
|
|
|
|
|
|
# Upload the results as artifacts (optional).
|
|
|
|
- name: "Upload artifact"
|
2024-10-10 15:37:28 +00:00
|
|
|
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
|
2022-03-14 22:43:04 +00:00
|
|
|
with:
|
|
|
|
name: SARIF file
|
|
|
|
path: results.sarif
|
|
|
|
retention-days: 5
|
|
|
|
|
|
|
|
# Upload the results to GitHub's code scanning dashboard.
|
|
|
|
- name: "Upload to code-scanning"
|
2024-10-14 15:13:53 +00:00
|
|
|
uses: github/codeql-action/upload-sarif@f779452ac5af1c261dce0346a8f964149f49322b
|
2022-03-14 22:43:04 +00:00
|
|
|
with:
|
|
|
|
sarif_file: results.sarif
|