zizmor 1.4.1__tar.gz → 1.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of zizmor might be problematic. Click here for more details.
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/workflows/ci.yml +8 -3
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/workflows/docker.yml +6 -6
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/workflows/pypi.yml +12 -10
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/workflows/site.yml +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/workflows/zizmor.yml +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/Cargo.lock +95 -113
- {zizmor-1.4.1 → zizmor-1.5.0}/Cargo.toml +13 -10
- {zizmor-1.4.1 → zizmor-1.5.0}/PKG-INFO +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/development.md +17 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/release-notes.md +25 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/snippets/help.txt +5 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/snippets/trophies.md +25 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/snippets/trophies.txt +4 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/usage.md +42 -3
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/artipacked.rs +3 -3
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/bot_conditions.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/cache_poisoning.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/dangerous_triggers.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/excessive_permissions.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/github_env.rs +42 -12
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/hardcoded_container_credentials.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/impostor_commit.rs +3 -3
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/insecure_commands.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/known_vulnerable_actions.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/overprovisioned_secrets.rs +17 -4
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/ref_confusion.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/secrets_inherit.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/self_hosted_runner.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/template_injection.rs +3 -3
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/unpinned_uses.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/unredacted_secrets.rs +2 -2
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/use_trusted_publishing.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/config.rs +3 -3
- {zizmor-1.4.1 → zizmor-1.5.0}/src/expr/mod.rs +55 -64
- {zizmor-1.4.1 → zizmor-1.5.0}/src/finding/mod.rs +5 -5
- {zizmor-1.4.1 → zizmor-1.5.0}/src/github_api.rs +3 -3
- {zizmor-1.4.1 → zizmor-1.5.0}/src/main.rs +162 -59
- {zizmor-1.4.1 → zizmor-1.5.0}/src/models/coordinate.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/models/uses.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/models.rs +6 -6
- {zizmor-1.4.1 → zizmor-1.5.0}/src/registry.rs +26 -23
- {zizmor-1.4.1 → zizmor-1.5.0}/src/render.rs +19 -11
- {zizmor-1.4.1 → zizmor-1.5.0}/src/sarif.rs +1 -1
- {zizmor-1.4.1 → zizmor-1.5.0}/src/state.rs +2 -2
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/acceptance.rs +12 -14
- zizmor-1.5.0/tests/integration/common.rs +149 -0
- zizmor-1.5.0/tests/integration/e2e.rs +154 -0
- zizmor-1.5.0/tests/integration/main.rs +4 -0
- zizmor-1.5.0/tests/integration/snapshot.rs +535 -0
- zizmor-1.5.0/tests/integration/snapshots/integration__e2e__gha_hazmat.snap +870 -0
- zizmor-1.5.0/tests/integration/snapshots/integration__e2e__menagerie-2.snap +22 -0
- zizmor-1.5.0/tests/integration/snapshots/integration__e2e__menagerie.snap +13 -0
- zizmor-1.4.1/tests/snapshots/snapshot__artipacked-2.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__artipacked-2.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__artipacked-3.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__artipacked-3.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__artipacked-4.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__artipacked-4.snap +3 -2
- zizmor-1.4.1/tests/snapshots/snapshot__artipacked.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__artipacked.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__bot_conditions.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__bot_conditions.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-10.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-10.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-11.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-11.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-12.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-12.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-13.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-13.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-14.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-2.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-2.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-3.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-3.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-4.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-4.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-5.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-5.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-6.snap +6 -0
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-7.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-8.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-8.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-9.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-9.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cache_poisoning.snap +6 -0
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__cant_retrieve.snap +7 -0
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-10.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-10.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-11.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-11.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-12.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-12.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-2.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-2.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-3.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-3.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-4.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-4.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-5.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-5.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-7.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-7.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-8.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-8.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-9.snap +6 -0
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__excessive_permissions.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__github_env-2.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__github_env-2.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__github_env-3.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__github_env-3.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__github_env.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__github_env.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__insecure_commands-2.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__insecure_commands-2.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__insecure_commands-3.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__insecure_commands-3.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__insecure_commands.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__insecure_commands.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__invalid_inputs.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__invalid_inputs.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__overprovisioned_secrets.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__overprovisioned_secrets.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__ref_confusion-2.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__ref_confusion.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__ref_confusion.snap +3 -2
- zizmor-1.4.1/tests/snapshots/snapshot__secrets_inherit.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__secrets_inherit.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted-2.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted-3.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted-3.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted-4.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted-4.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted-5.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted-5.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted-6.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted-6.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted-7.snap +6 -0
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted-8.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__self_hosted.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection-2.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection-2.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection-3.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection-4.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection-4.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection-5.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection-5.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection-6.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection-6.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection-7.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection-8.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection-8.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__template_injection.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__unpinned_uses-2.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__unpinned_uses-2.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__unpinned_uses-3.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__unpinned_uses-3.snap +2 -2
- zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__unpinned_uses-4.snap +6 -0
- zizmor-1.4.1/tests/snapshots/snapshot__unpinned_uses.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__unpinned_uses.snap +2 -2
- zizmor-1.4.1/tests/snapshots/snapshot__unredacted_secrets.snap → zizmor-1.5.0/tests/integration/snapshots/integration__snapshot__unredacted_secrets.snap +3 -2
- zizmor-1.5.0/tests/integration/test-data/e2e-menagerie/.github/dummy-action-2/action.yml +7 -0
- zizmor-1.5.0/tests/integration/test-data/e2e-menagerie/.github/workflows/another-dummy.yml +9 -0
- zizmor-1.5.0/tests/integration/test-data/e2e-menagerie/.github/workflows/dummy.yml +9 -0
- zizmor-1.5.0/tests/integration/test-data/e2e-menagerie/.github/workflows/ignored.yaml +12 -0
- zizmor-1.5.0/tests/integration/test-data/e2e-menagerie/.gitignore +2 -0
- zizmor-1.5.0/tests/integration/test-data/e2e-menagerie/README.md +10 -0
- zizmor-1.5.0/tests/integration/test-data/e2e-menagerie/dummy-action-1/action.yaml +7 -0
- zizmor-1.4.1/tests/common.rs +0 -12
- zizmor-1.4.1/tests/snapshot.rs +0 -520
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-14.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-6.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning-7.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__cache_poisoning.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__cant_retrieve.snap +0 -7
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-6.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions-9.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__excessive_permissions.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__ref_confusion-2.snap +0 -5
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted-2.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted-7.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__self_hosted-8.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection-3.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection-7.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__template_injection.snap +0 -6
- zizmor-1.4.1/tests/snapshots/snapshot__unpinned_uses-4.snap +0 -6
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/dependabot.yml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/.github/workflows/release.yml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/.gitignore +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/CONTRIBUTING.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/Dockerfile +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/LICENSE +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/Makefile +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/README.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/assets/favicon48x48.png +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/assets/rainbow.svg +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/assets/zizmor-demo.gif +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/audits.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/configuration.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/index.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/installation.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/magiclink.css +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/quickstart.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/snippets/render-sponsors.py +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/snippets/render-trophies.py +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/snippets/sponsors.html +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/snippets/sponsors.json +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/docs/trophy-case.md +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/mkdocs.yml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/pyproject.toml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/src/audit/mod.rs +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/src/expr/expr.pest +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/src/utils.rs +1 -1
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/artipacked/issue-447-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/artipacked.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/bot-conditions.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-disabled-by-default.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-enabled-by-default.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-not-configurable.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-opt-in-boolean-toggle.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-opt-in-boolish-toggle.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-opt-in-expression.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-opt-in-multi-value-toggle.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/caching-opt-out.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/issue-343-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/issue-378-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/no-cache-aware-steps.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/publisher-step.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/workflow-release-branch-trigger.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning/workflow-tag-trigger.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/cache-poisoning.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/issue-336-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/issue-472-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/jobs-broaden-permissions.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/reusable-workflow-call.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/reusable-workflow-other-triggers.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/workflow-default-perms-all-jobs-explicit.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/workflow-default-perms.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/workflow-empty-perms.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/workflow-read-all.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/workflow-write-all.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions/workflow-write-explicit.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/excessive-permissions.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/github-env/action.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/github-env/github-path.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/github-env/issue-397-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/github_env.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/hardcoded-credentials.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/inlined-ignores.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/insecure-commands/action.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/insecure-commands.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/invalid/invalid-workflow.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/overprovisioned-secrets.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/ref-confusion/issue-518-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/ref-confusion.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/secrets-inherit.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/self-hosted/issue-283-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/self-hosted/self-hosted-matrix-dimension.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/self-hosted/self-hosted-matrix-exclusion.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/self-hosted/self-hosted-matrix-inclusion.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/self-hosted/self-hosted-runner-group.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/self-hosted/self-hosted-runner-label.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/self-hosted.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/issue-22-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/issue-339-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/issue-418-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/pr-317-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/pr-425-backstop/action.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/static-env.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/template-injection-dynamic-matrix.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection/template-injection-static-matrix.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/template-injection.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/unpinned-uses/action.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/unpinned-uses/issue-433-repro.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/unpinned-uses.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/unredacted-secrets.yml +0 -0
- {zizmor-1.4.1/tests → zizmor-1.5.0/tests/integration}/test-data/use-trusted-publishing.yml +0 -0
- {zizmor-1.4.1 → zizmor-1.5.0}/uv.lock +0 -0
|
@@ -33,10 +33,15 @@ jobs:
|
|
|
33
33
|
|
|
34
34
|
- uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2
|
|
35
35
|
|
|
36
|
-
- uses: astral-sh/setup-uv@
|
|
36
|
+
- uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
|
|
37
|
+
|
|
38
|
+
- name: Test dependencies
|
|
39
|
+
run: |
|
|
40
|
+
# Needed for tty-tests
|
|
41
|
+
sudo apt install -y expect
|
|
37
42
|
|
|
38
43
|
- name: Test
|
|
39
|
-
run: cargo test --features online-tests
|
|
44
|
+
run: cargo test --features online-tests,tty-tests
|
|
40
45
|
env:
|
|
41
46
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
42
47
|
|
|
@@ -52,7 +57,7 @@ jobs:
|
|
|
52
57
|
with:
|
|
53
58
|
persist-credentials: false
|
|
54
59
|
|
|
55
|
-
- uses: astral-sh/setup-uv@
|
|
60
|
+
- uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
|
|
56
61
|
|
|
57
62
|
- name: Test site
|
|
58
63
|
run: make site
|
|
@@ -48,13 +48,13 @@ jobs:
|
|
|
48
48
|
persist-credentials: false
|
|
49
49
|
|
|
50
50
|
- name: Set up Docker Buildx
|
|
51
|
-
uses: docker/setup-buildx-action@
|
|
51
|
+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
|
|
52
52
|
with:
|
|
53
53
|
cache-binary: false
|
|
54
54
|
|
|
55
55
|
- name: Extract Docker metadata
|
|
56
56
|
id: docker-metadata
|
|
57
|
-
uses: docker/metadata-action@
|
|
57
|
+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
|
|
58
58
|
with:
|
|
59
59
|
images: "${{ env.ZIZMOR_IMAGE }}"
|
|
60
60
|
|
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
68
68
|
|
|
69
69
|
- name: Build and push by digest
|
|
70
70
|
id: build
|
|
71
|
-
uses: docker/build-push-action@
|
|
71
|
+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
|
|
72
72
|
with:
|
|
73
73
|
platforms: ${{ matrix.image.platform }}
|
|
74
74
|
labels: ${{ steps.docker-metadata.outputs.labels }}
|
|
@@ -105,7 +105,7 @@ jobs:
|
|
|
105
105
|
|
|
106
106
|
steps:
|
|
107
107
|
- name: Download digests
|
|
108
|
-
uses: actions/download-artifact@
|
|
108
|
+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
|
|
109
109
|
with:
|
|
110
110
|
path: ${{ runner.temp }}/digests
|
|
111
111
|
pattern: digests-*
|
|
@@ -120,13 +120,13 @@ jobs:
|
|
|
120
120
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
121
121
|
|
|
122
122
|
- name: Set up Docker Buildx
|
|
123
|
-
uses: docker/setup-buildx-action@
|
|
123
|
+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
|
|
124
124
|
with:
|
|
125
125
|
cache-binary: false
|
|
126
126
|
|
|
127
127
|
- name: Extract Docker metadata
|
|
128
128
|
id: docker-metadata
|
|
129
|
-
uses: docker/metadata-action@
|
|
129
|
+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
|
|
130
130
|
env:
|
|
131
131
|
DOCKER_METADATA_ANNOTATIONS_LEVELS: index
|
|
132
132
|
with:
|
|
@@ -40,7 +40,7 @@ jobs:
|
|
|
40
40
|
with:
|
|
41
41
|
persist-credentials: false
|
|
42
42
|
- name: Build wheels
|
|
43
|
-
uses: PyO3/maturin-action@
|
|
43
|
+
uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1
|
|
44
44
|
with:
|
|
45
45
|
target: ${{ matrix.platform.target }}
|
|
46
46
|
args: --release --out dist
|
|
@@ -70,7 +70,7 @@ jobs:
|
|
|
70
70
|
with:
|
|
71
71
|
persist-credentials: false
|
|
72
72
|
- name: Build wheels
|
|
73
|
-
uses: PyO3/maturin-action@
|
|
73
|
+
uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1
|
|
74
74
|
with:
|
|
75
75
|
target: ${{ matrix.platform.target }}
|
|
76
76
|
args: --release --out dist
|
|
@@ -96,7 +96,7 @@ jobs:
|
|
|
96
96
|
with:
|
|
97
97
|
persist-credentials: false
|
|
98
98
|
- name: Build wheels
|
|
99
|
-
uses: PyO3/maturin-action@
|
|
99
|
+
uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1
|
|
100
100
|
with:
|
|
101
101
|
target: ${{ matrix.platform.target }}
|
|
102
102
|
args: --release --out dist
|
|
@@ -112,16 +112,18 @@ jobs:
|
|
|
112
112
|
strategy:
|
|
113
113
|
matrix:
|
|
114
114
|
platform:
|
|
115
|
+
# TODO: Bump to macos-15 once Rust 1.85+ is available.
|
|
116
|
+
# See: https://github.com/actions/runner-images/issues/11637
|
|
115
117
|
- runner: macos-13
|
|
116
118
|
target: x86_64
|
|
117
|
-
- runner: macos-
|
|
119
|
+
- runner: macos-13
|
|
118
120
|
target: aarch64
|
|
119
121
|
steps:
|
|
120
122
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
121
123
|
with:
|
|
122
124
|
persist-credentials: false
|
|
123
125
|
- name: Build wheels
|
|
124
|
-
uses: PyO3/maturin-action@
|
|
126
|
+
uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1
|
|
125
127
|
with:
|
|
126
128
|
target: ${{ matrix.platform.target }}
|
|
127
129
|
args: --release --out dist
|
|
@@ -139,7 +141,7 @@ jobs:
|
|
|
139
141
|
with:
|
|
140
142
|
persist-credentials: false
|
|
141
143
|
- name: Build sdist
|
|
142
|
-
uses: PyO3/maturin-action@
|
|
144
|
+
uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1
|
|
143
145
|
with:
|
|
144
146
|
command: sdist
|
|
145
147
|
args: --out dist
|
|
@@ -155,7 +157,7 @@ jobs:
|
|
|
155
157
|
environment:
|
|
156
158
|
name: pypi
|
|
157
159
|
url: https://pypi.org/p/zizmor
|
|
158
|
-
if: ${{ startsWith(github.ref, 'refs/tags/')
|
|
160
|
+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
159
161
|
needs: [linux, musllinux, windows, macos, sdist]
|
|
160
162
|
permissions:
|
|
161
163
|
# Use to sign the release artifacts
|
|
@@ -165,14 +167,14 @@ jobs:
|
|
|
165
167
|
# Used to generate artifact attestation
|
|
166
168
|
attestations: write
|
|
167
169
|
steps:
|
|
168
|
-
- uses: actions/download-artifact@
|
|
170
|
+
- uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
|
|
169
171
|
- name: Generate artifact attestation
|
|
170
|
-
uses: actions/attest-build-provenance@
|
|
172
|
+
uses: actions/attest-build-provenance@c074443f1aee8d4aeeae555aebba3282517141b2 # v2
|
|
171
173
|
with:
|
|
172
174
|
subject-path: 'wheels-*/*'
|
|
173
175
|
- name: Publish to PyPI
|
|
174
176
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
175
|
-
uses: PyO3/maturin-action@
|
|
177
|
+
uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1
|
|
176
178
|
with:
|
|
177
179
|
command: upload
|
|
178
180
|
args: --non-interactive --skip-existing wheels-*/*
|
|
@@ -30,7 +30,7 @@ jobs:
|
|
|
30
30
|
persist-credentials: false
|
|
31
31
|
|
|
32
32
|
- name: Install the latest version of uv
|
|
33
|
-
uses: astral-sh/setup-uv@
|
|
33
|
+
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
|
|
34
34
|
|
|
35
35
|
- name: build site
|
|
36
36
|
run: make site
|
|
@@ -21,13 +21,13 @@ jobs:
|
|
|
21
21
|
with:
|
|
22
22
|
persist-credentials: false
|
|
23
23
|
- name: Install the latest version of uv
|
|
24
|
-
uses: astral-sh/setup-uv@
|
|
24
|
+
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
|
|
25
25
|
- name: Run zizmor 🌈
|
|
26
26
|
run: uvx zizmor --format sarif . > results.sarif
|
|
27
27
|
env:
|
|
28
28
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
29
29
|
- name: Upload SARIF file
|
|
30
|
-
uses: github/codeql-action/upload-sarif@
|
|
30
|
+
uses: github/codeql-action/upload-sarif@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
|
|
31
31
|
with:
|
|
32
32
|
sarif_file: results.sarif
|
|
33
33
|
category: zizmor
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "Inflector"
|
|
@@ -97,9 +97,9 @@ dependencies = [
|
|
|
97
97
|
|
|
98
98
|
[[package]]
|
|
99
99
|
name = "anyhow"
|
|
100
|
-
version = "1.0.
|
|
100
|
+
version = "1.0.97"
|
|
101
101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
-
checksum = "
|
|
102
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
|
103
103
|
|
|
104
104
|
[[package]]
|
|
105
105
|
name = "arrayvec"
|
|
@@ -152,7 +152,7 @@ dependencies = [
|
|
|
152
152
|
"miniz_oxide",
|
|
153
153
|
"object",
|
|
154
154
|
"rustc-demangle",
|
|
155
|
-
"windows-targets
|
|
155
|
+
"windows-targets",
|
|
156
156
|
]
|
|
157
157
|
|
|
158
158
|
[[package]]
|
|
@@ -258,9 +258,9 @@ dependencies = [
|
|
|
258
258
|
|
|
259
259
|
[[package]]
|
|
260
260
|
name = "cc"
|
|
261
|
-
version = "1.2.
|
|
261
|
+
version = "1.2.16"
|
|
262
262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
-
checksum = "
|
|
263
|
+
checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
|
|
264
264
|
dependencies = [
|
|
265
265
|
"shlex",
|
|
266
266
|
]
|
|
@@ -273,9 +273,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
273
273
|
|
|
274
274
|
[[package]]
|
|
275
275
|
name = "clap"
|
|
276
|
-
version = "4.5.
|
|
276
|
+
version = "4.5.31"
|
|
277
277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
-
checksum = "
|
|
278
|
+
checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767"
|
|
279
279
|
dependencies = [
|
|
280
280
|
"clap_builder",
|
|
281
281
|
"clap_derive",
|
|
@@ -293,9 +293,9 @@ dependencies = [
|
|
|
293
293
|
|
|
294
294
|
[[package]]
|
|
295
295
|
name = "clap_builder"
|
|
296
|
-
version = "4.5.
|
|
296
|
+
version = "4.5.31"
|
|
297
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
-
checksum = "
|
|
298
|
+
checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863"
|
|
299
299
|
dependencies = [
|
|
300
300
|
"anstream",
|
|
301
301
|
"anstyle",
|
|
@@ -358,6 +358,31 @@ dependencies = [
|
|
|
358
358
|
"cfg-if",
|
|
359
359
|
]
|
|
360
360
|
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "crossbeam-deque"
|
|
363
|
+
version = "0.8.6"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"crossbeam-epoch",
|
|
368
|
+
"crossbeam-utils",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "crossbeam-epoch"
|
|
373
|
+
version = "0.9.18"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"crossbeam-utils",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "crossbeam-utils"
|
|
382
|
+
version = "0.8.21"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
385
|
+
|
|
361
386
|
[[package]]
|
|
362
387
|
name = "crypto-common"
|
|
363
388
|
version = "0.1.6"
|
|
@@ -446,13 +471,13 @@ dependencies = [
|
|
|
446
471
|
|
|
447
472
|
[[package]]
|
|
448
473
|
name = "etcetera"
|
|
449
|
-
version = "0.
|
|
474
|
+
version = "0.10.0"
|
|
450
475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
-
checksum = "
|
|
476
|
+
checksum = "26c7b13d0780cb82722fd59f6f57f925e143427e4a75313a6c77243bf5326ae6"
|
|
452
477
|
dependencies = [
|
|
453
478
|
"cfg-if",
|
|
454
479
|
"home",
|
|
455
|
-
"windows-sys 0.
|
|
480
|
+
"windows-sys 0.59.0",
|
|
456
481
|
]
|
|
457
482
|
|
|
458
483
|
[[package]]
|
|
@@ -625,6 +650,19 @@ dependencies = [
|
|
|
625
650
|
"serde_yaml",
|
|
626
651
|
]
|
|
627
652
|
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "globset"
|
|
655
|
+
version = "0.4.15"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"aho-corasick",
|
|
660
|
+
"bstr",
|
|
661
|
+
"log",
|
|
662
|
+
"regex-automata 0.4.9",
|
|
663
|
+
"regex-syntax 0.8.5",
|
|
664
|
+
]
|
|
665
|
+
|
|
628
666
|
[[package]]
|
|
629
667
|
name = "hashbrown"
|
|
630
668
|
version = "0.15.2"
|
|
@@ -970,6 +1008,22 @@ dependencies = [
|
|
|
970
1008
|
"icu_properties",
|
|
971
1009
|
]
|
|
972
1010
|
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "ignore"
|
|
1013
|
+
version = "0.4.23"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
|
|
1016
|
+
dependencies = [
|
|
1017
|
+
"crossbeam-deque",
|
|
1018
|
+
"globset",
|
|
1019
|
+
"log",
|
|
1020
|
+
"memchr",
|
|
1021
|
+
"regex-automata 0.4.9",
|
|
1022
|
+
"same-file",
|
|
1023
|
+
"walkdir",
|
|
1024
|
+
"winapi-util",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
973
1027
|
[[package]]
|
|
974
1028
|
name = "indexmap"
|
|
975
1029
|
version = "2.7.1"
|
|
@@ -997,9 +1051,9 @@ dependencies = [
|
|
|
997
1051
|
|
|
998
1052
|
[[package]]
|
|
999
1053
|
name = "insta"
|
|
1000
|
-
version = "1.42.
|
|
1054
|
+
version = "1.42.2"
|
|
1001
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
-
checksum = "
|
|
1056
|
+
checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084"
|
|
1003
1057
|
dependencies = [
|
|
1004
1058
|
"console",
|
|
1005
1059
|
"linked-hash-map",
|
|
@@ -1635,15 +1689,14 @@ dependencies = [
|
|
|
1635
1689
|
|
|
1636
1690
|
[[package]]
|
|
1637
1691
|
name = "ring"
|
|
1638
|
-
version = "0.17.
|
|
1692
|
+
version = "0.17.13"
|
|
1639
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
-
checksum = "
|
|
1694
|
+
checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee"
|
|
1641
1695
|
dependencies = [
|
|
1642
1696
|
"cc",
|
|
1643
1697
|
"cfg-if",
|
|
1644
1698
|
"getrandom",
|
|
1645
1699
|
"libc",
|
|
1646
|
-
"spin",
|
|
1647
1700
|
"untrusted",
|
|
1648
1701
|
"windows-sys 0.52.0",
|
|
1649
1702
|
]
|
|
@@ -1763,9 +1816,9 @@ dependencies = [
|
|
|
1763
1816
|
|
|
1764
1817
|
[[package]]
|
|
1765
1818
|
name = "serde"
|
|
1766
|
-
version = "1.0.
|
|
1819
|
+
version = "1.0.219"
|
|
1767
1820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
-
checksum = "
|
|
1821
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1769
1822
|
dependencies = [
|
|
1770
1823
|
"serde_derive",
|
|
1771
1824
|
]
|
|
@@ -1792,9 +1845,9 @@ dependencies = [
|
|
|
1792
1845
|
|
|
1793
1846
|
[[package]]
|
|
1794
1847
|
name = "serde_derive"
|
|
1795
|
-
version = "1.0.
|
|
1848
|
+
version = "1.0.219"
|
|
1796
1849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
-
checksum = "
|
|
1850
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1798
1851
|
dependencies = [
|
|
1799
1852
|
"proc-macro2",
|
|
1800
1853
|
"quote",
|
|
@@ -1803,9 +1856,9 @@ dependencies = [
|
|
|
1803
1856
|
|
|
1804
1857
|
[[package]]
|
|
1805
1858
|
name = "serde_json"
|
|
1806
|
-
version = "1.0.
|
|
1859
|
+
version = "1.0.140"
|
|
1807
1860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
-
checksum = "
|
|
1861
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
1809
1862
|
dependencies = [
|
|
1810
1863
|
"itoa",
|
|
1811
1864
|
"memchr",
|
|
@@ -1976,12 +2029,6 @@ dependencies = [
|
|
|
1976
2029
|
"windows-sys 0.52.0",
|
|
1977
2030
|
]
|
|
1978
2031
|
|
|
1979
|
-
[[package]]
|
|
1980
|
-
name = "spin"
|
|
1981
|
-
version = "0.9.8"
|
|
1982
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
-
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1984
|
-
|
|
1985
2032
|
[[package]]
|
|
1986
2033
|
name = "ssri"
|
|
1987
2034
|
version = "9.2.0"
|
|
@@ -2234,9 +2281,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2234
2281
|
|
|
2235
2282
|
[[package]]
|
|
2236
2283
|
name = "tokio"
|
|
2237
|
-
version = "1.
|
|
2284
|
+
version = "1.44.0"
|
|
2238
2285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
-
checksum = "
|
|
2286
|
+
checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a"
|
|
2240
2287
|
dependencies = [
|
|
2241
2288
|
"backtrace",
|
|
2242
2289
|
"bytes",
|
|
@@ -2793,7 +2840,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2793
2840
|
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
2794
2841
|
dependencies = [
|
|
2795
2842
|
"windows-core",
|
|
2796
|
-
"windows-targets
|
|
2843
|
+
"windows-targets",
|
|
2797
2844
|
]
|
|
2798
2845
|
|
|
2799
2846
|
[[package]]
|
|
@@ -2806,7 +2853,7 @@ dependencies = [
|
|
|
2806
2853
|
"windows-interface",
|
|
2807
2854
|
"windows-result",
|
|
2808
2855
|
"windows-strings",
|
|
2809
|
-
"windows-targets
|
|
2856
|
+
"windows-targets",
|
|
2810
2857
|
]
|
|
2811
2858
|
|
|
2812
2859
|
[[package]]
|
|
@@ -2839,7 +2886,7 @@ checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
|
|
|
2839
2886
|
dependencies = [
|
|
2840
2887
|
"windows-result",
|
|
2841
2888
|
"windows-strings",
|
|
2842
|
-
"windows-targets
|
|
2889
|
+
"windows-targets",
|
|
2843
2890
|
]
|
|
2844
2891
|
|
|
2845
2892
|
[[package]]
|
|
@@ -2848,7 +2895,7 @@ version = "0.2.0"
|
|
|
2848
2895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
2896
|
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
2850
2897
|
dependencies = [
|
|
2851
|
-
"windows-targets
|
|
2898
|
+
"windows-targets",
|
|
2852
2899
|
]
|
|
2853
2900
|
|
|
2854
2901
|
[[package]]
|
|
@@ -2858,16 +2905,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2858
2905
|
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
2859
2906
|
dependencies = [
|
|
2860
2907
|
"windows-result",
|
|
2861
|
-
"windows-targets
|
|
2862
|
-
]
|
|
2863
|
-
|
|
2864
|
-
[[package]]
|
|
2865
|
-
name = "windows-sys"
|
|
2866
|
-
version = "0.48.0"
|
|
2867
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2869
|
-
dependencies = [
|
|
2870
|
-
"windows-targets 0.48.5",
|
|
2908
|
+
"windows-targets",
|
|
2871
2909
|
]
|
|
2872
2910
|
|
|
2873
2911
|
[[package]]
|
|
@@ -2876,7 +2914,7 @@ version = "0.52.0"
|
|
|
2876
2914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2877
2915
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2878
2916
|
dependencies = [
|
|
2879
|
-
"windows-targets
|
|
2917
|
+
"windows-targets",
|
|
2880
2918
|
]
|
|
2881
2919
|
|
|
2882
2920
|
[[package]]
|
|
@@ -2885,22 +2923,7 @@ version = "0.59.0"
|
|
|
2885
2923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
2924
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2887
2925
|
dependencies = [
|
|
2888
|
-
"windows-targets
|
|
2889
|
-
]
|
|
2890
|
-
|
|
2891
|
-
[[package]]
|
|
2892
|
-
name = "windows-targets"
|
|
2893
|
-
version = "0.48.5"
|
|
2894
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2895
|
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2896
|
-
dependencies = [
|
|
2897
|
-
"windows_aarch64_gnullvm 0.48.5",
|
|
2898
|
-
"windows_aarch64_msvc 0.48.5",
|
|
2899
|
-
"windows_i686_gnu 0.48.5",
|
|
2900
|
-
"windows_i686_msvc 0.48.5",
|
|
2901
|
-
"windows_x86_64_gnu 0.48.5",
|
|
2902
|
-
"windows_x86_64_gnullvm 0.48.5",
|
|
2903
|
-
"windows_x86_64_msvc 0.48.5",
|
|
2926
|
+
"windows-targets",
|
|
2904
2927
|
]
|
|
2905
2928
|
|
|
2906
2929
|
[[package]]
|
|
@@ -2909,46 +2932,28 @@ version = "0.52.6"
|
|
|
2909
2932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
2933
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2911
2934
|
dependencies = [
|
|
2912
|
-
"windows_aarch64_gnullvm
|
|
2913
|
-
"windows_aarch64_msvc
|
|
2914
|
-
"windows_i686_gnu
|
|
2935
|
+
"windows_aarch64_gnullvm",
|
|
2936
|
+
"windows_aarch64_msvc",
|
|
2937
|
+
"windows_i686_gnu",
|
|
2915
2938
|
"windows_i686_gnullvm",
|
|
2916
|
-
"windows_i686_msvc
|
|
2917
|
-
"windows_x86_64_gnu
|
|
2918
|
-
"windows_x86_64_gnullvm
|
|
2919
|
-
"windows_x86_64_msvc
|
|
2939
|
+
"windows_i686_msvc",
|
|
2940
|
+
"windows_x86_64_gnu",
|
|
2941
|
+
"windows_x86_64_gnullvm",
|
|
2942
|
+
"windows_x86_64_msvc",
|
|
2920
2943
|
]
|
|
2921
2944
|
|
|
2922
|
-
[[package]]
|
|
2923
|
-
name = "windows_aarch64_gnullvm"
|
|
2924
|
-
version = "0.48.5"
|
|
2925
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2927
|
-
|
|
2928
2945
|
[[package]]
|
|
2929
2946
|
name = "windows_aarch64_gnullvm"
|
|
2930
2947
|
version = "0.52.6"
|
|
2931
2948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
2949
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2933
2950
|
|
|
2934
|
-
[[package]]
|
|
2935
|
-
name = "windows_aarch64_msvc"
|
|
2936
|
-
version = "0.48.5"
|
|
2937
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2939
|
-
|
|
2940
2951
|
[[package]]
|
|
2941
2952
|
name = "windows_aarch64_msvc"
|
|
2942
2953
|
version = "0.52.6"
|
|
2943
2954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2944
2955
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2945
2956
|
|
|
2946
|
-
[[package]]
|
|
2947
|
-
name = "windows_i686_gnu"
|
|
2948
|
-
version = "0.48.5"
|
|
2949
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2951
|
-
|
|
2952
2957
|
[[package]]
|
|
2953
2958
|
name = "windows_i686_gnu"
|
|
2954
2959
|
version = "0.52.6"
|
|
@@ -2961,48 +2966,24 @@ version = "0.52.6"
|
|
|
2961
2966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
2967
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2963
2968
|
|
|
2964
|
-
[[package]]
|
|
2965
|
-
name = "windows_i686_msvc"
|
|
2966
|
-
version = "0.48.5"
|
|
2967
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2969
|
-
|
|
2970
2969
|
[[package]]
|
|
2971
2970
|
name = "windows_i686_msvc"
|
|
2972
2971
|
version = "0.52.6"
|
|
2973
2972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
2973
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2975
2974
|
|
|
2976
|
-
[[package]]
|
|
2977
|
-
name = "windows_x86_64_gnu"
|
|
2978
|
-
version = "0.48.5"
|
|
2979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2981
|
-
|
|
2982
2975
|
[[package]]
|
|
2983
2976
|
name = "windows_x86_64_gnu"
|
|
2984
2977
|
version = "0.52.6"
|
|
2985
2978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
2979
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2987
2980
|
|
|
2988
|
-
[[package]]
|
|
2989
|
-
name = "windows_x86_64_gnullvm"
|
|
2990
|
-
version = "0.48.5"
|
|
2991
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2992
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2993
|
-
|
|
2994
2981
|
[[package]]
|
|
2995
2982
|
name = "windows_x86_64_gnullvm"
|
|
2996
2983
|
version = "0.52.6"
|
|
2997
2984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
2985
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2999
2986
|
|
|
3000
|
-
[[package]]
|
|
3001
|
-
name = "windows_x86_64_msvc"
|
|
3002
|
-
version = "0.48.5"
|
|
3003
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3004
|
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3005
|
-
|
|
3006
2987
|
[[package]]
|
|
3007
2988
|
name = "windows_x86_64_msvc"
|
|
3008
2989
|
version = "0.52.6"
|
|
@@ -3151,7 +3132,7 @@ dependencies = [
|
|
|
3151
3132
|
|
|
3152
3133
|
[[package]]
|
|
3153
3134
|
name = "zizmor"
|
|
3154
|
-
version = "1.
|
|
3135
|
+
version = "1.5.0"
|
|
3155
3136
|
dependencies = [
|
|
3156
3137
|
"annotate-snippets",
|
|
3157
3138
|
"anstream",
|
|
@@ -3165,6 +3146,7 @@ dependencies = [
|
|
|
3165
3146
|
"github-actions-models",
|
|
3166
3147
|
"http-cache-reqwest",
|
|
3167
3148
|
"human-panic",
|
|
3149
|
+
"ignore",
|
|
3168
3150
|
"indexmap",
|
|
3169
3151
|
"indicatif",
|
|
3170
3152
|
"insta",
|