Skip to content

scorecards

scorecards #648

Workflow file for this run

name: scorecards
on:
branch_protection_rule:
schedule:
- cron: '43 10 * * 4'
push:
branches:
- main
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
# Needs for private repositories.
contents: read
actions: read
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v3
with:
persist-credentials: false
- name: Run analysis
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # pin@v2.4.3
with:
results_file: results.sarif
results_format: sarif
publish_results: true
- name: Upload results.sarif
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # pin@v2
with:
sarif_file: results.sarif