Scorecard supply-chain security #401
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 supply-chain security | |
| on: | |
| branch_protection_rule: | |
| schedule: | |
| - cron: '29 23 * * 3' | |
| push: | |
| branches: [ "main", "master"] | |
| pull_request: | |
| branches: ["main", "master"] | |
| permissions: read-all | |
| jobs: | |
| visibility-check: | |
| outputs: | |
| visibility: ${{ steps.drv.outputs.visibility }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Determine repository visibility | |
| id: drv | |
| run: | | |
| visibility=$(gh api /repos/$GITHUB_REPOSITORY --jq '.visibility') | |
| echo "visibility=$visibility" >> $GITHUB_OUTPUT | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| analysis: | |
| if: ${{ needs.visibility-check.outputs.visibility == 'public' }} | |
| needs: visibility-check | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| id-token: write | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: "Run analysis" | |
| uses: ossf/[email protected] | |
| with: | |
| results_file: results.sarif | |
| results_format: sarif | |
| publish_results: true | |
| - name: "Upload artifact" | |
| uses: actions/[email protected] | |
| 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/[email protected] | |
| with: | |
| sarif_file: results.sarif | |