build(api): update dev script to create vip user #1333
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: Scorecards | |
on: | |
branch_protection_rule: | |
schedule: | |
- cron: '0 12 * * 4' | |
push: | |
branches: [main] | |
permissions: read-all | |
jobs: | |
scorecards: | |
name: Scorecards Analysis | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
id-token: write | |
actions: read | |
contents: read | |
steps: | |
- name: 'Checkout code' | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
persist-credentials: false | |
- name: 'Run analysis' | |
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 | |
with: | |
results_file: results.sarif | |
results_format: sarif | |
repo_token: ${{ secrets.SCORECARD_READ_TOKEN }} | |
publish_results: true | |
- name: 'Upload to code-scanning' | |
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f | |
with: | |
sarif_file: results.sarif |