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
2 changes: 1 addition & 1 deletion .github/workflows/boop-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
- .github/workflows/boop-website.yml

jobs:
boop:

Check warning on line 11 in .github/workflows/boop-website.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

boop-website.yml:11: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v3.1.1
- uses: actions/create-github-app-token@v3.2.0

Check failure on line 14 in .github/workflows/boop-website.yml

View workflow job for this annotation

GitHub Actions / zizmor

github-app

boop-website.yml:14: dangerous use of GitHub App tokens: app token inherits blanket installation permissions
id: app-token
with:
# required
app-id: ${{ secrets.GH_ORG_APP_ID }}
private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}

Check failure on line 20 in .github/workflows/boop-website.yml

View workflow job for this annotation

GitHub Actions / zizmor

github-app

boop-website.yml:20: dangerous use of GitHub App tokens: token granted access to all repositories for this owner's app installation
- name: Send repository_dispatch to website
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
Expand Down
Loading