Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# yamllint disable rule:line-length
#
# There are restrictions on this workflow:
# https://github.com/ossf/scorecard-action#workflow-restrictions
---
name: OpenSSF Scorecard

Expand All @@ -10,18 +13,20 @@ on:
- master
branch_protection_rule: {}

permissions:
actions: read
permissions: # no workflow-level write permissions allowed
contents: read
id-token: write
security-events: write

concurrency:
group: scorecard
cancel-in-progress: true

jobs:
analysis:
permissions:
actions: read
contents: read
id-token: write
security-events: write
if: github.event.repository.default_branch == github.ref_name || github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
Expand Down
Loading