Skip to content
Open
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/update-spec-for-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@
group: repos-spec-${{ github.ref }}
cancel-in-progress: true
jobs:
update-spec:

Check warning on line 16 in .github/workflows/update-spec-for-repos.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

update-spec-for-repos.yml:16: overly broad permissions: default permissions used due to no permissions: block
strategy:
matrix:
repo: [modeling-app]
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 22 in .github/workflows/update-spec-for-repos.yml

View workflow job for this annotation

GitHub Actions / zizmor

github-app

update-spec-for-repos.yml:22: 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 28 in .github/workflows/update-spec-for-repos.yml

View workflow job for this annotation

GitHub Actions / zizmor

github-app

update-spec-for-repos.yml:28: dangerous use of GitHub App tokens: token granted access to all repositories for this owner's app installation
- uses: actions/checkout@v4

Check warning on line 29 in .github/workflows/update-spec-for-repos.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

update-spec-for-repos.yml:29: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
# Checkout the repo since we will want to update the file there.
- uses: actions/checkout@v4

Check warning on line 31 in .github/workflows/update-spec-for-repos.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

update-spec-for-repos.yml:31: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
with:
repository: 'kittycad/${{ matrix.repo }}'
path: ${{ matrix.repo }}
Expand Down
Loading