chore(deps): bump ubuntu from 66460d5 to c35e29c in /.devcontaine…
#788
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: Supply-chain Security | |
| on: | |
| workflow_dispatch: | |
| branch_protection_rule: | |
| schedule: | |
| - cron: "16 19 * * 6" | |
| push: | |
| branches: [main] | |
| permissions: {} | |
| jobs: | |
| ossf-scorecard: | |
| name: 🛡️ OpenSSF Scorecard | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write # is needed by github/codeql-action/upload-sarif to upload sarif files | |
| id-token: write # is needed by ossf/scorecard-action to authenticate with OIDC | |
| steps: | |
| - uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 | |
| with: | |
| disable-sudo: true | |
| egress-policy: audit | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3 | |
| with: | |
| results_file: results.sarif | |
| results_format: sarif | |
| repo_token: ${{ secrets.SCORECARD_TOKEN }} | |
| publish_results: true | |
| - uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2 | |
| with: | |
| sarif_file: results.sarif |