Skip to content

ci: bump the github-actions group across 1 directory with 7 updates (… #234

ci: bump the github-actions group across 1 directory with 7 updates (…

ci: bump the github-actions group across 1 directory with 7 updates (… #234

Workflow file for this run

# 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
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@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
with:
sarif_file: results.sarif