Merge pull request #5496 from airqo-platform/Baalmart-patch-1 #1
This file contains hidden or 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: Scorecard analysis workflow | |
on: | |
branch_protection_rule: | |
schedule: | |
- cron: '30 1 * * 6' | |
push: | |
branches: [ "main", "master", "staging" ] | |
permissions: read-all | |
jobs: | |
analysis: | |
name: Scorecard analysis | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
id-token: write | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: "Run analysis" | |
uses: ossf/scorecard-action@v2 | |
with: | |
results_file: results.sarif | |
results_format: sarif | |
publish_results: true | |
- name: "Upload to code-scanning" | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif |