2023-01-17 08:01:47 -05:00
|
|
|
name: Scorecard supply-chain security
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# Only the default branch is supported.
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
analysis:
|
|
|
|
name: Scorecard analysis
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
permissions:
|
|
|
|
# Needed to upload the results to code-scanning dashboard.
|
|
|
|
security-events: write
|
|
|
|
# Needed to publish results and get a badge (for publish_results below).
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
steps:
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Checkout
|
2024-05-13 04:42:07 -04:00
|
|
|
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
|
2023-01-17 08:01:47 -05:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Run analysis
|
2024-05-13 04:42:07 -04:00
|
|
|
uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534 # v2.3.3
|
2023-01-17 08:01:47 -05:00
|
|
|
with:
|
|
|
|
results_file: results.sarif
|
|
|
|
results_format: sarif
|
|
|
|
publish_results: true
|
|
|
|
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Upload artifact
|
2024-05-08 08:33:35 -04:00
|
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
2023-01-17 08:01:47 -05:00
|
|
|
with:
|
|
|
|
name: SARIF file
|
|
|
|
path: results.sarif
|
|
|
|
retention-days: 5
|
|
|
|
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Upload to code-scanning
|
2024-05-15 03:05:38 -04:00
|
|
|
uses: github/codeql-action/upload-sarif@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
|
2023-01-17 08:01:47 -05:00
|
|
|
with:
|
|
|
|
sarif_file: results.sarif
|