2022-09-23 20:28:30 +00:00
|
|
|
# Copyright 2022 Google LLC
|
|
|
|
|
2022-09-23 18:42:20 +00:00
|
|
|
name: Scorecards supply-chain security
|
|
|
|
on:
|
2023-09-29 11:20:32 +00:00
|
|
|
pull_request:
|
2022-09-23 18:42:20 +00:00
|
|
|
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
|
|
|
|
# Used to receive a badge.
|
|
|
|
id-token: write
|
2022-09-23 20:49:51 +00:00
|
|
|
|
2022-09-23 18:42:20 +00:00
|
|
|
steps:
|
|
|
|
- name: "Checkout code"
|
2024-06-01 23:15:35 +00:00
|
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # tag=v4.1.6
|
2022-09-23 18:42:20 +00:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
|
|
|
|
- name: "Run analysis"
|
2024-06-01 23:15:46 +00:00
|
|
|
uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534 # tag=v2.3.3
|
2022-09-23 18:42:20 +00:00
|
|
|
with:
|
|
|
|
results_file: results.sarif
|
|
|
|
results_format: sarif
|
|
|
|
# Publish the results for public repositories to enable scorecard badges. For more details, see
|
2022-09-23 20:49:51 +00:00
|
|
|
# https://github.com/ossf/scorecard-action#publishing-results.
|
2023-09-29 11:20:32 +00:00
|
|
|
publish_results: ${{ github.event_name != 'pull_request' }}
|
2022-09-23 18:42:20 +00:00
|
|
|
|
|
|
|
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
|
|
|
|
# format to the repository Actions tab.
|
|
|
|
- name: "Upload artifact"
|
2024-05-01 23:05:58 +00:00
|
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # tag=v4.3.3
|
2022-09-23 18:42:20 +00:00
|
|
|
with:
|
|
|
|
name: SARIF file
|
|
|
|
path: results.sarif
|
|
|
|
retention-days: 5
|
2022-09-23 20:49:51 +00:00
|
|
|
|
2022-09-23 18:42:20 +00:00
|
|
|
# Upload the results to GitHub's code scanning dashboard.
|
|
|
|
- name: "Upload to code-scanning"
|
2024-06-04 14:46:30 +00:00
|
|
|
uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f # tag=v3.25.7
|
2022-09-23 18:42:20 +00:00
|
|
|
with:
|
|
|
|
sarif_file: results.sarif
|