Scorecard supply-chain security #367
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@v5 | |
| with: | |
| persist-credentials: false | |
| - name: "Run analysis" | |
| uses: ossf/scorecard-action@v2.4.3 | |
| with: | |
| results_file: results.sarif | |
| results_format: sarif | |
| publish_results: true | |
| - name: "Upload artifact" | |
| uses: actions/upload-artifact@v5.0.0 | |
| 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@v4.31.0 | |
| with: | |
| sarif_file: results.sarif | |