chore(deps): Bump github/codeql-action from 3.26.13 to 3.27.0 (#453) #447
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
name: Scorecards supply-chain security | |
on: | |
push: | |
# Only the default branch is supported. | |
branches: | |
- main | |
schedule: | |
# Weekly on Saturdays. | |
- cron: '30 1 * * 6' | |
permissions: read-all | |
jobs: | |
analysis: | |
name: Scorecards analysis | |
runs-on: ubuntu-latest | |
permissions: | |
# Needed for Code scanning upload | |
security-events: write | |
# Needed for GitHub OIDC token if publish_results is true | |
id-token: write | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
persist-credentials: false | |
- name: "Run analysis" | |
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0 | |
with: | |
results_file: results.sarif | |
results_format: sarif | |
# (Optional) Read-only PAT token if | |
# - you want to enable the Branch-Protection check on a *public* repository | |
# To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. | |
repo_token: ${{ secrets.SCORECARD_READ_TOKEN }} | |
# Scorecard team runs a weekly scan of public GitHub repos, | |
# see https://github.com/ossf/scorecard#public-data. | |
# Setting `publish_results: true` helps us scale by leveraging your workflow to | |
# extract the results instead of relying on our own infrastructure to run scans. | |
# And it's free for you! | |
publish_results: true | |
# Upload the results as artifacts (optional). Commenting out will disable | |
# uploads of run results in SARIF format to the repository Actions tab. | |
# https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts | |
- 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). | |
# Commenting out will disable upload of results to your repo's Code Scanning dashboard | |
- name: "Upload to code-scanning" | |
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0 | |
with: | |
sarif_file: results.sarif |