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,15 +8,15 @@
- .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@v2
- uses: actions/create-github-app-token@v3
id: app-token
with:
# required
app-id: ${{ secrets.GH_ORG_APP_ID }}

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

View workflow job for this annotation

GitHub Actions / zizmor

secrets-outside-env

boop-website.yml:18: secrets referenced without a dedicated environment: secret is accessed outside of a dedicated environment
private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }}

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

View workflow job for this annotation

GitHub Actions / zizmor

secrets-outside-env

boop-website.yml:19: secrets referenced without a dedicated environment: secret is accessed outside of a dedicated environment
owner: ${{ github.repository_owner }}
- name: Send repository_dispatch to website
env:
Expand Down
Loading