Skip to content

OpenSSF Scorecard

OpenSSF Scorecard #24

Workflow file for this run

# Runs the OpenSSF Scorecard on a weekly schedule and publishes results
# to the OpenSSF dashboard and GitHub Security tab.
# https://github.com/ossf/scorecard-action
name: OpenSSF Scorecard
on:
# Run on branch protection rule changes
branch_protection_rule:
# Weekly schedule
schedule:
- cron: "30 1 * * 1"
# Allow manual trigger
workflow_dispatch:
# Declare default permissions as read only
permissions: read-all
jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'python-wheel-build' }}
permissions:
# Needed for Code Scanning upload
security-events: write
# Needed to publish results
id-token: write
# Read repo contents
contents: read
# Read actions
actions: read
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run analysis
uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4
with:
results_file: results.sarif
results_format: sarif
publish_results: true
- name: Upload artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: SARIF file
path: results.sarif
retention-days: 5
- name: Upload to code-scanning
uses: github/codeql-action/upload-sarif@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
with:
sarif_file: results.sarif