Merge remote-tracking branch 'origin/main' into codex/maximum-unified… #1249
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 Code Scanning | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '41 11 * * 1' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| code-scanning: | |
| name: scorecard-code-scanning | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| contents: read | |
| actions: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| persist-credentials: false | |
| - name: Run OpenSSF Scorecard SARIF | |
| uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a | |
| with: | |
| results_file: scorecard-results.sarif | |
| results_format: sarif | |
| publish_results: false | |
| - name: Upload Scorecard SARIF artifact | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a | |
| with: | |
| name: openssf-scorecard-results | |
| path: scorecard-results.sarif | |
| if-no-files-found: error | |
| - name: Upload Scorecard results to code scanning | |
| uses: github/codeql-action/upload-sarif@f25eda876ebb741d872b63b9f2c6dfdd77f14b83 | |
| with: | |
| sarif_file: scorecard-results.sarif |