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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
|
with: |
|
persist-credentials: false |
|
|
|
- name: Run analysis |
|
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1 |
|
with: |
|
results_file: results.sarif |
|
results_format: sarif |
|
publish_results: true |
|
|
|
- name: Upload results as artifact |
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 |
|
with: |
|
name: OpenSSF Scorecard results |
|
path: results.sarif |
|
retention-days: 5 |
|
|
|
- name: Upload results to GitHub Security tab |
|
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18 |
|
with: |
|
sarif_file: results.sarif
|
|
|