Skip to content

chore(deps): bump mkdocs-material from 9.5.48 to 9.5.49 in /docs #275

chore(deps): bump mkdocs-material from 9.5.48 to 9.5.49 in /docs

chore(deps): bump mkdocs-material from 9.5.48 to 9.5.49 in /docs #275

name: Scorecard supply-chain security
on:
schedule:
- cron: '0 0 * * *'
push:
branches: [ "main" ]
workflow_dispatch:
permissions: read-all
jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
security-events: write # Needed to upload the results to code-scanning dashboard.
id-token: write # Needed to publish results and get a badge (see publish_results below).
contents: read # Uncomment the permissions if installing in a private repository.
actions: read # Uncomment the permissions if installing in a private repository.
steps:
- name: "Checkout code"
uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871 # v4.1.6
with:
persist-credentials: false
- name: "Run analysis"
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.3.2
with:
results_file: results.sarif
results_format: sarif
publish_results: true # Publish results to OpenSSF REST API for easy access by consumers
- name: "Upload artifact"
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: SARIF file
path: results.sarif
retention-days: 5
# Upload the results to GitHub's code scanning dashboard (optional).
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10
with:
sarif_file: results.sarif