build(deps-dev): upgrade ci and docs requirements (#183) #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This CI job is adapted from: | |
# Scorecards' GitHub action (2013-09-12), Apache License 2.0 | |
# Ref: https://github.com/ossf/scorecard-action/blob/8d9d91b01b9389de406141fb47b98726a399e1ea/README.md?plain=1#L198 | |
name: Scorecard analysis | |
on: | |
# Only the default branch is supported. | |
branch_protection_rule: | |
schedule: | |
# run once a month at midnight of the first day of the month | |
- cron: 0 0 1 * * | |
push: | |
branches: [main] | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
analysis: | |
name: Scorecard analysis | |
runs-on: ubuntu-24.04 | |
permissions: | |
# Needed if using Code scanning alerts | |
security-events: write | |
# Needed for GitHub OIDC token if publish_results is true | |
id-token: write | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
persist-credentials: false | |
# Ref: https://github.com/ossf/scorecard-action | |
- name: Run scorecard analysis | |
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0 | |
with: | |
results_file: results.sarif | |
results_format: sarif | |
# Ref: https://github.com/ossf/scorecard-action#publishing-results. | |
publish_results: true | |
# required for Code scanning alerts | |
- name: Upload SARIF results to code scanning | |
uses: github/codeql-action/upload-sarif@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6 | |
with: | |
sarif_file: results.sarif |