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
4 changes: 2 additions & 2 deletions .github/workflows/install-kittycad-cli-test.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: "test install cli action"

Check warning on line 1 in .github/workflows/install-kittycad-cli-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

install-kittycad-cli-test.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
pull_request:

jobs:
test-install-cli:

Check warning on line 7 in .github/workflows/install-kittycad-cli-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

install-kittycad-cli-test.yml:7: overly broad permissions: default permissions used due to no permissions: block
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

Check warning on line 13 in .github/workflows/install-kittycad-cli-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

install-kittycad-cli-test.yml:13: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- uses: ./
id: install-zoo
- name: check-install
run: |
echo "Version from output is: ${{ steps.install-zoo.outputs.version }}"

Check notice on line 18 in .github/workflows/install-kittycad-cli-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

template-injection

install-kittycad-cli-test.yml:18: code injection via template expansion: may expand into attacker-controllable code
zoo --version

convert-with-powershell:

Check warning on line 21 in .github/workflows/install-kittycad-cli-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

install-kittycad-cli-test.yml:21: overly broad permissions: default permissions used due to no permissions: block
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

Check warning on line 24 in .github/workflows/install-kittycad-cli-test.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

install-kittycad-cli-test.yml:24: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- uses: ./
id: install-zoo
- name: convert
Expand Down
Loading