docs: CHANGELOG for v2.0.2 (default falsify-version 0.3.1) #22
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: OpenSSF Scorecard | |
| on: | |
| branch_protection_rule: | |
| schedule: | |
| - cron: "0 6 * * 1" # weekly, Monday 06:00 UTC | |
| push: | |
| branches: [main] | |
| # Required permissions for the OpenSSF Scorecard action | |
| permissions: read-all | |
| jobs: | |
| analysis: | |
| name: Scorecard analysis | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write # for SARIF upload | |
| id-token: write # for keyless signing of results | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Run analysis | |
| uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3 | |
| with: | |
| results_file: results.sarif | |
| results_format: sarif | |
| # publish_results pushes a public scorecard.dev page for the repo. | |
| # Requires the repo to be public; safe to leave true. | |
| publish_results: true | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: SARIF results | |
| path: results.sarif | |
| retention-days: 30 | |
| - name: Upload SARIF to code-scanning | |
| uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| sarif_file: results.sarif |