Add OTel log support to Carnot plan protos and implement exec node su… #880
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: ossf-scorecard | |
| on: | |
| schedule: | |
| - cron: '20 7 * * 2' | |
| push: | |
| branches: | |
| - 'main' | |
| permissions: read-all | |
| jobs: | |
| analysis: | |
| name: Scorecard analysis | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # Needed to publish result and generate a badge. | |
| id-token: write | |
| # Needed to upload the results to code-scanning dashboard. | |
| security-events: write | |
| contents: read | |
| actions: read | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1 | |
| with: | |
| publish_results: true | |
| results_file: results.sarif | |
| results_format: sarif | |
| - uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13 | |
| with: | |
| sarif_file: results.sarif |