You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.1 KiB
65 lines
2.1 KiB
# This workflow uses actions that are not certified by GitHub. They are provided |
|
# by a third-party and are governed by separate terms of service, privacy |
|
# policy, and support documentation. |
|
|
|
name: Scorecard supply-chain security |
|
on: |
|
# For Branch-Protection check. Only the default branch is supported. See |
|
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection |
|
branch_protection_rule: |
|
# To guarantee Maintained check is occasionally updated. See |
|
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained |
|
schedule: |
|
- cron: '20 7 * * 2' |
|
push: |
|
branches: ["master"] |
|
|
|
# Declare default permissions as read only. |
|
permissions: read-all |
|
|
|
jobs: |
|
analysis: |
|
name: Scorecard analysis |
|
runs-on: ubuntu-latest |
|
permissions: |
|
# Needed to upload the results to code-scanning dashboard. |
|
security-events: write |
|
# Needed to publish results and get a badge (see publish_results below). |
|
id-token: write |
|
contents: read |
|
actions: read |
|
# To allow GraphQL ListCommits to work |
|
issues: read |
|
pull-requests: read |
|
# To detect SAST tools |
|
checks: read |
|
|
|
steps: |
|
- name: Harden the runner (Audit all outbound calls) |
|
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0 |
|
with: |
|
egress-policy: audit |
|
|
|
- name: "Checkout code" |
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
with: |
|
persist-credentials: false |
|
|
|
- name: "Run analysis" |
|
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3 |
|
with: |
|
results_file: results.sarif |
|
results_format: sarif |
|
publish_results: true |
|
|
|
- name: "Upload artifact" |
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 |
|
with: |
|
name: SARIF file |
|
path: results.sarif |
|
retention-days: 5 |
|
|
|
- name: "Upload to code-scanning" |
|
uses: github/codeql-action/upload-sarif@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4 |
|
with: |
|
sarif_file: results.sarif
|
|
|