| 1234567891011121314151617181920212223242526272829303132333435363738 |
- name: Scorecard supply-chain security
- on:
- branch_protection_rule:
- schedule:
- - cron: '27 2 * * 3'
- push:
- branches: [ "main" ]
- 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
- steps:
- - name: "Checkout code"
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- with:
- persist-credentials: false
- - name: "Run analysis"
- uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
- with:
- results_file: results.sarif
- results_format: sarif
- publish_results: true
- # Upload the results to GitHub's code scanning dashboard.
- - name: "Upload to code-scanning"
- uses: github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
- with:
- sarif_file: results.sarif
|