Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 10 additions & 2 deletions .github/workflows/_scan-ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,16 @@ on:
type: string
default: ubuntu-latest

# Declare default permissions as read only.
permissions: read-all
# Declare default permissions to match exactly what the `analysis` job below
# requires. Reusable-workflow callers must grant at least this set on the
# calling job, or GitHub Actions rejects the call - `read-all` was too broad
# here since it expands to every permission scope (packages, issues, pages,
# etc.), none of which this workflow actually uses.
permissions:
security-events: write
id-token: write
contents: read
actions: read

jobs:
analysis:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: example-pr
name: example-release

on:
push:
Expand Down
Loading