mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
name: OpenSSF Scorecard |
|
|
|
on: |
|
branch_protection_rule: |
|
push: |
|
branches: [ main ] |
|
schedule: |
|
- cron: '30 0 * * 5' |
|
|
|
permissions: |
|
contents: read |
|
|
|
jobs: |
|
analyze: |
|
name: Analyze |
|
runs-on: ubuntu-latest |
|
|
|
permissions: |
|
actions: read |
|
contents: read |
|
id-token: write |
|
security-events: write |
|
|
|
steps: |
|
- name: Checkout repository |
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
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: true |
|
|
|
- name: Upload results as artifact |
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 |
|
with: |
|
name: OpenSSF Scorecard results |
|
path: results.sarif |
|
retention-days: 5 |
|
|
|
- name: Upload results to GitHub Security tab |
|
uses: github/codeql-action/upload-sarif@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.29.5 |
|
with: |
|
sarif_file: results.sarif
|
|
|