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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 |
|
with: |
|
persist-credentials: false |
|
|
|
- name: Run analysis |
|
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0 |
|
with: |
|
results_file: results.sarif |
|
results_format: sarif |
|
publish_results: true |
|
|
|
- name: Upload results as artifact |
|
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.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@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13 |
|
with: |
|
sarif_file: results.sarif
|
|
|