zizmor 1.12.0__tar.gz → 1.13.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.12.0 → zizmor-1.13.0}/Cargo.lock +67 -110
- {zizmor-1.12.0 → zizmor-1.13.0}/Cargo.toml +17 -16
- zizmor-1.13.0/PKG-INFO +121 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-expressions/Cargo.toml +2 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-expressions/README.md +6 -0
- zizmor-1.13.0/crates/github-actions-expressions/src/call.rs +1050 -0
- zizmor-1.13.0/crates/github-actions-expressions/src/identifier.rs +31 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-expressions/src/lib.rs +402 -126
- zizmor-1.13.0/crates/github-actions-expressions/src/literal.rs +75 -0
- zizmor-1.13.0/crates/github-actions-expressions/src/op.rs +80 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/workflow/job.rs +7 -6
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpatch/src/lib.rs +29 -29
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/src/lib.rs +6 -6
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/Cargo.toml +1 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/anonymous_definition.rs +2 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/artipacked.rs +12 -12
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/bot_conditions.rs +12 -14
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/cache_poisoning.rs +12 -12
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/dangerous_triggers.rs +7 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/excessive_permissions.rs +2 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/forbidden_uses.rs +21 -30
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/github_env.rs +10 -15
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/hardcoded_container_credentials.rs +21 -21
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/impostor_commit.rs +8 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/insecure_commands.rs +13 -12
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/known_vulnerable_actions.rs +48 -54
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/mod.rs +64 -18
- zizmor-1.13.0/crates/zizmor/src/audit/obfuscation.rs +435 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/overprovisioned_secrets.rs +3 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/ref_confusion.rs +7 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/secrets_inherit.rs +2 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/self_hosted_runner.rs +2 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/stale_action_refs.rs +8 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/template_injection.rs +14 -13
- zizmor-1.13.0/crates/zizmor/src/audit/undocumented_permissions.rs +129 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/unpinned_images.rs +2 -1
- zizmor-1.13.0/crates/zizmor/src/audit/unpinned_uses.rs +143 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/unredacted_secrets.rs +4 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/unsound_condition.rs +4 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/unsound_contains.rs +22 -17
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/audit/use_trusted_publishing.rs +3 -1
- zizmor-1.13.0/crates/zizmor/src/config.rs +597 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/finding/location.rs +6 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/finding.rs +9 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/github_api.rs +108 -33
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/lsp.rs +21 -16
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/main.rs +75 -202
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/models/action.rs +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/models/coordinate.rs +6 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/models/uses.rs +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/models/workflow.rs +5 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/output/fix.rs +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/output/plain.rs +47 -27
- zizmor-1.13.0/crates/zizmor/src/registry/input.rs +642 -0
- zizmor-1.13.0/crates/zizmor/src/registry.rs +223 -0
- zizmor-1.13.0/crates/zizmor/src/state.rs +28 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/utils.rs +10 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/common.rs +43 -12
- zizmor-1.13.0/crates/zizmor/tests/integration/config.rs +192 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/e2e.rs +44 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/main.rs +2 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshot.rs +74 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__disablement.snap +6 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_dotgithub.snap +9 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_dotgithub_from_file_input.snap +9 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root.snap +9 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root_from_child_dir.snap +9 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root_from_file_input.snap +9 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_dotgithub.snap +19 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_dotgithub_from_file_input.snap +19 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root.snap +19 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root_from_child_dir.snap +19 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root_from_file_input.snap +19 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__gha_hazmat.snap +138 -117
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +12 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict-2.snap +2 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict.snap +2 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-10.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-2.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-3.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-4.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-5.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-6.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-7.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-8.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-9.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs.snap +1 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1065.snap +34 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1116_strict_collection_remote_input-2.snap +8 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1116_strict_collection_remote_input.snap +13 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_569.snap +3 -15
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_726.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie-2.snap +0 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__pr_960_backstop.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__anonymous_definition.snap +4 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-2.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-3.snap +3 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-4.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-5.snap +4 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__bot_conditions.snap +27 -32
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-10.snap +2 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-11.snap +7 -13
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-12.snap +2 -5
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-13.snap +2 -5
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-15.snap +3 -4
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-16.snap +30 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-2.snap +2 -5
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-3.snap +2 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-4.snap +2 -5
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-5.snap +2 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-8.snap +2 -5
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-9.snap +2 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve.snap +3 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-10.snap +5 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-11.snap +3 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-12.snap +12 -8
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-2.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-3.snap +8 -6
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-4.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-7.snap +6 -8
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-8.snap +3 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-9.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_output.snap +1 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation-2.snap +1 -1
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation.snap +192 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__overprovisioned_secrets.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__secrets_inherit.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-3.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-4.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-5.snap +4 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-6.snap +4 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__stale_action_refs.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-11.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-12.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-13.snap +23 -47
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-14.snap +12 -15
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-15.snap +7 -9
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-2.snap +4 -4
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-4.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-5.snap +6 -6
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-6.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-8.snap +7 -8
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection.snap +3 -3
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-2.snap +5 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-3.snap +13 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-4.snap +5 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-5.snap +5 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-6.snap +21 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-7.snap +47 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions.snap +55 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config-2.snap +0 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config.snap +0 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-default-config.snap +0 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-empty-config.snap +0 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-hash-pin-everything-config.snap +0 -1
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-10.snap +11 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-11.snap +11 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-12.snap +11 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-2.snap +2 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-3.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-5.snap +8 -5
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-6.snap +11 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-7.snap +11 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-8.snap +11 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-9.snap +11 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses.snap +2 -3
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unredacted_secrets.snap +2 -2
- zizmor-1.13.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_condition.snap +102 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_contains.snap +1 -1
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-2.snap +2 -2
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-3.snap +24 -25
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing.snap +17 -18
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-1081-repro.yml +29 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-dotgithub/.github/workflows/hackme.yml +16 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-dotgithub/.github/zizmor.yml +4 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-root/.github/workflows/hackme.yml +16 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-root/zizmor.yml +4 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/config-scenarios/disablement/.github/workflows/hackme.yml +16 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/config-scenarios/disablement/zizmor.yml +3 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-336-repro.yml +1 -1
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/issue-1065.yml +24 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/obfuscation.yml +3 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/contents-read-only.yml +20 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/contents-read-with-other.yml +18 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/documented.yml +49 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/empty-permissions.yml +18 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/partially-documented.yml +37 -0
- zizmor-1.13.0/crates/zizmor/tests/integration/test-data/undocumented-permissions.yml +75 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unsound-condition.yml +20 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/pyproject.toml +1 -1
- zizmor-1.12.0/PKG-INFO +0 -6
- zizmor-1.12.0/crates/zizmor/src/audit/obfuscation.rs +0 -174
- zizmor-1.12.0/crates/zizmor/src/audit/unpinned_uses.rs +0 -301
- zizmor-1.12.0/crates/zizmor/src/config.rs +0 -227
- zizmor-1.12.0/crates/zizmor/src/registry.rs +0 -581
- zizmor-1.12.0/crates/zizmor/src/state.rs +0 -51
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +0 -9
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation.snap +0 -189
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-10.snap +0 -11
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-11.snap +0 -11
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-12.snap +0 -11
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-6.snap +0 -11
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-7.snap +0 -11
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-8.snap +0 -11
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-9.snap +0 -11
- zizmor-1.12.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_condition.snap +0 -35
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-expressions/src/context.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-expressions/src/expr.pest +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/Cargo.toml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/LICENSE +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/README.md +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/action.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/common/expr.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/common.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/dependabot/mod.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/dependabot/v2.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/lib.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/workflow/event.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/src/workflow/mod.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-actions/gh-action-pip-audit.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-actions/gh-action-pypi-publish.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-actions/gh-action-sigstore-python.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-actions/no-input-output-descriptions.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-actions/setup-python.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-dependabot/v2/pip-audit.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-dependabot/v2/sigstore-python.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/adafruit-circuitpython-run-tests.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/false-condition.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/gh-action-sigstore-python-selftest.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/git-annex-built-windows.yaml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/guacsec-guac-ci.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/homebrew-core-automerge-triggers.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/homebrew-core-dispatch-rebottle.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/intel-llvm-sycl-linux-run-tests.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/issue-35.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/jazzband-tablib-docs-lint.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/letsencrypt-boulder-boulder-ci.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/mhils-workflows-python-deploy.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/openbao-openbao-test-go.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/pip-api-test.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/pip-audit-ci.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/pip-audit-scorecards.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/pwn-requests.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/pyca-cryptography-ci.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/pypi-attestations-release.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/reusable-workflow-unpinned.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/rnpgp-rnp-centos-and-fedora.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/runs-on-expr.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/runs-on-group-only.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/scalar-trigger-type.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/vil02-puzzle_generator-check_examples.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-646.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-650.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/test_action.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/test_dependabot_v2.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/github-actions-models/tests/test_workflow.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/subfeature/.gitignore +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/subfeature/Cargo.toml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/subfeature/LICENSE +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/subfeature/README.md +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/subfeature/src/lib.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpatch/Cargo.toml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpatch/LICENSE +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpatch/README.md +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpatch/tests/unit_tests.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/Cargo.toml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/LICENSE +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/README.md +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/integration_test.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/basic.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/comments.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/directives.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/exact-features.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/flow.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/interceding-comment.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/key-only-features.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/yamlpath/tests/testcases/quoted-key.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/README.md +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/build.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/data/codeql-injection-sinks.json +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/data/context-capabilities.csv +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/data/github-action.json +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/data/github-workflow.json +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/models/inputs.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/models.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/output/github.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/output/json/mod.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/output/json/v1.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/output/mod.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/src/output/sarif.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/acceptance.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/e2e/json_v1.rs +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/e2e/snapshots/integration__e2e__json_v1__json_v1.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_612_repro.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__anonymous_definition-2.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-14.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-6.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-7.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-5.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-2.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-3.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-4.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-5.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-6.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-2.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-3.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-2.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-3.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-4.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion-2.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-2.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-7.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-8.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-10.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-3.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-7.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-9.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-ref-pin-everything-config.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_images.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-4.snap +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/anonymous-definition.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/artipacked/demo-action/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/artipacked/issue-447-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/artipacked.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/bot-conditions.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-disabled-by-default.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-enabled-by-default.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-not-configurable.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolean-toggle.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolish-toggle.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-expression.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-multi-value-toggle.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-out.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-343-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-378-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-642-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/no-cache-aware-steps.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/publisher-step.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-release-branch-trigger.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-tag-trigger.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/cache-poisoning.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/dummy-action-2/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/another-dummy.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/dummy.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/ignored.yaml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.gitignore +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/README.md +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/dummy-action-1/action.yaml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-472-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/jobs-broaden-permissions.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-call.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-other-triggers.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms-all-jobs-explicit.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-empty-perms.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-read-all.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-all.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-explicit.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/excessive-permissions.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-all.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some-refs.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-all.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some-refs.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/forbidden-uses-menagerie.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/github-env/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/github-env/github-path.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/github-env/issue-397-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/github_env.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/hardcoded-credentials.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/inlined-ignores.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/insecure-commands/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/insecure-commands/issue-839-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/insecure-commands.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-1.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-2.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/blank.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/comment-only.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/empty-action/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/empty.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-1/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-2/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow-2.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/issue-612-repro/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/obfuscation/computed-indices.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/overprovisioned-secrets.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/pr-960-backstop/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/ref-confusion/issue-518-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/ref-confusion.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/secrets-inherit.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/self-hosted/issue-283-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-dimension.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-exclusion.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-inclusion.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-group.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-label.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/self-hosted.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/several-vulnerabilities.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/stale-action-refs.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/addnab-docker-run-action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/codeql-sinks.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/dataflow.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/false-positive-menagerie.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/input-caps.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-22-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-339-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-418-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-749-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-883-repro/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-988-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/multiline-expression.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/patterns.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/pr-317-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/pr-425-backstop/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/pwsh-script.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/static-env.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-dynamic-matrix.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-static-matrix.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/template-injection.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-images.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite-2.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/empty.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/hash-pin-everything.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-1.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-2.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-3.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-4.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-5.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-6.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-wrong-policy-object.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/ref-pin-everything.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-433-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-659-repro.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/menagerie-of-uses.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unpinned-uses.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unredacted-secrets.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/unsound-contains.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/cargo-publish.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/demo-action/action.yml +0 -0
- {zizmor-1.12.0 → zizmor-1.13.0}/crates/zizmor/tests/integration/test-data/use-trusted-publishing.yml +0 -0
|
@@ -52,9 +52,9 @@ dependencies = [
|
|
|
52
52
|
|
|
53
53
|
[[package]]
|
|
54
54
|
name = "annotate-snippets"
|
|
55
|
-
version = "0.
|
|
55
|
+
version = "0.12.3"
|
|
56
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
-
checksum = "
|
|
57
|
+
checksum = "4b0f1e2f8ec4bff67c7e1867001ec452595daf315cce10c393b7d4274024f878"
|
|
58
58
|
dependencies = [
|
|
59
59
|
"anstyle",
|
|
60
60
|
"unicode-width 0.2.0",
|
|
@@ -112,9 +112,9 @@ dependencies = [
|
|
|
112
112
|
|
|
113
113
|
[[package]]
|
|
114
114
|
name = "anyhow"
|
|
115
|
-
version = "1.0.
|
|
115
|
+
version = "1.0.99"
|
|
116
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
117
|
+
checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
|
|
118
118
|
|
|
119
119
|
[[package]]
|
|
120
120
|
name = "arrayvec"
|
|
@@ -251,7 +251,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
251
251
|
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
|
|
252
252
|
dependencies = [
|
|
253
253
|
"memchr",
|
|
254
|
-
"regex-automata
|
|
254
|
+
"regex-automata",
|
|
255
255
|
"serde",
|
|
256
256
|
]
|
|
257
257
|
|
|
@@ -302,9 +302,9 @@ dependencies = [
|
|
|
302
302
|
|
|
303
303
|
[[package]]
|
|
304
304
|
name = "camino"
|
|
305
|
-
version = "1.1.
|
|
305
|
+
version = "1.1.12"
|
|
306
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "
|
|
307
|
+
checksum = "dd0b03af37dad7a14518b7691d81acb0f8222604ad3d1b02f6b4bed5188c0cd5"
|
|
308
308
|
dependencies = [
|
|
309
309
|
"serde",
|
|
310
310
|
]
|
|
@@ -332,9 +332,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
332
332
|
|
|
333
333
|
[[package]]
|
|
334
334
|
name = "clap"
|
|
335
|
-
version = "4.5.
|
|
335
|
+
version = "4.5.47"
|
|
336
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
-
checksum = "
|
|
337
|
+
checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931"
|
|
338
338
|
dependencies = [
|
|
339
339
|
"clap_builder",
|
|
340
340
|
"clap_derive",
|
|
@@ -342,9 +342,9 @@ dependencies = [
|
|
|
342
342
|
|
|
343
343
|
[[package]]
|
|
344
344
|
name = "clap-verbosity-flag"
|
|
345
|
-
version = "3.0.
|
|
345
|
+
version = "3.0.4"
|
|
346
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "
|
|
347
|
+
checksum = "9d92b1fab272fe943881b77cc6e920d6543e5b1bfadbd5ed81c7c5a755742394"
|
|
348
348
|
dependencies = [
|
|
349
349
|
"clap",
|
|
350
350
|
"tracing-core",
|
|
@@ -352,9 +352,9 @@ dependencies = [
|
|
|
352
352
|
|
|
353
353
|
[[package]]
|
|
354
354
|
name = "clap_builder"
|
|
355
|
-
version = "4.5.
|
|
355
|
+
version = "4.5.47"
|
|
356
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
357
|
+
checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6"
|
|
358
358
|
dependencies = [
|
|
359
359
|
"anstream",
|
|
360
360
|
"anstyle",
|
|
@@ -364,9 +364,9 @@ dependencies = [
|
|
|
364
364
|
|
|
365
365
|
[[package]]
|
|
366
366
|
name = "clap_complete"
|
|
367
|
-
version = "4.5.
|
|
367
|
+
version = "4.5.57"
|
|
368
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
-
checksum = "
|
|
369
|
+
checksum = "4d9501bd3f5f09f7bbee01da9a511073ed30a80cd7a509f1214bb74eadea71ad"
|
|
370
370
|
dependencies = [
|
|
371
371
|
"clap",
|
|
372
372
|
]
|
|
@@ -383,9 +383,9 @@ dependencies = [
|
|
|
383
383
|
|
|
384
384
|
[[package]]
|
|
385
385
|
name = "clap_derive"
|
|
386
|
-
version = "4.5.
|
|
386
|
+
version = "4.5.47"
|
|
387
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
-
checksum = "
|
|
388
|
+
checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
|
|
389
389
|
dependencies = [
|
|
390
390
|
"heck",
|
|
391
391
|
"proc-macro2",
|
|
@@ -620,8 +620,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
620
620
|
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
|
621
621
|
dependencies = [
|
|
622
622
|
"bit-set",
|
|
623
|
-
"regex-automata
|
|
624
|
-
"regex-syntax
|
|
623
|
+
"regex-automata",
|
|
624
|
+
"regex-syntax",
|
|
625
625
|
]
|
|
626
626
|
|
|
627
627
|
[[package]]
|
|
@@ -828,13 +828,14 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
|
828
828
|
|
|
829
829
|
[[package]]
|
|
830
830
|
name = "github-actions-expressions"
|
|
831
|
-
version = "0.0.
|
|
831
|
+
version = "0.0.10"
|
|
832
832
|
dependencies = [
|
|
833
833
|
"anyhow",
|
|
834
834
|
"itertools",
|
|
835
835
|
"pest",
|
|
836
836
|
"pest_derive",
|
|
837
837
|
"pretty_assertions",
|
|
838
|
+
"serde_json",
|
|
838
839
|
"subfeature",
|
|
839
840
|
]
|
|
840
841
|
|
|
@@ -857,8 +858,8 @@ dependencies = [
|
|
|
857
858
|
"aho-corasick",
|
|
858
859
|
"bstr",
|
|
859
860
|
"log",
|
|
860
|
-
"regex-automata
|
|
861
|
-
"regex-syntax
|
|
861
|
+
"regex-automata",
|
|
862
|
+
"regex-syntax",
|
|
862
863
|
]
|
|
863
864
|
|
|
864
865
|
[[package]]
|
|
@@ -1221,7 +1222,7 @@ dependencies = [
|
|
|
1221
1222
|
"globset",
|
|
1222
1223
|
"log",
|
|
1223
1224
|
"memchr",
|
|
1224
|
-
"regex-automata
|
|
1225
|
+
"regex-automata",
|
|
1225
1226
|
"same-file",
|
|
1226
1227
|
"walkdir",
|
|
1227
1228
|
"winapi-util",
|
|
@@ -1229,9 +1230,9 @@ dependencies = [
|
|
|
1229
1230
|
|
|
1230
1231
|
[[package]]
|
|
1231
1232
|
name = "indexmap"
|
|
1232
|
-
version = "2.
|
|
1233
|
+
version = "2.11.0"
|
|
1233
1234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
-
checksum = "
|
|
1235
|
+
checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
|
|
1235
1236
|
dependencies = [
|
|
1236
1237
|
"equivalent",
|
|
1237
1238
|
"hashbrown 0.15.2",
|
|
@@ -1254,9 +1255,9 @@ dependencies = [
|
|
|
1254
1255
|
|
|
1255
1256
|
[[package]]
|
|
1256
1257
|
name = "insta"
|
|
1257
|
-
version = "1.43.
|
|
1258
|
+
version = "1.43.2"
|
|
1258
1259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
-
checksum = "
|
|
1260
|
+
checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
|
|
1260
1261
|
dependencies = [
|
|
1261
1262
|
"console 0.15.11",
|
|
1262
1263
|
"once_cell",
|
|
@@ -1350,7 +1351,7 @@ dependencies = [
|
|
|
1350
1351
|
"percent-encoding",
|
|
1351
1352
|
"referencing",
|
|
1352
1353
|
"regex",
|
|
1353
|
-
"regex-syntax
|
|
1354
|
+
"regex-syntax",
|
|
1354
1355
|
"reqwest",
|
|
1355
1356
|
"serde",
|
|
1356
1357
|
"serde_json",
|
|
@@ -1433,11 +1434,11 @@ dependencies = [
|
|
|
1433
1434
|
|
|
1434
1435
|
[[package]]
|
|
1435
1436
|
name = "matchers"
|
|
1436
|
-
version = "0.
|
|
1437
|
+
version = "0.2.0"
|
|
1437
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
-
checksum = "
|
|
1439
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1439
1440
|
dependencies = [
|
|
1440
|
-
"regex-automata
|
|
1441
|
+
"regex-automata",
|
|
1441
1442
|
]
|
|
1442
1443
|
|
|
1443
1444
|
[[package]]
|
|
@@ -1522,12 +1523,11 @@ dependencies = [
|
|
|
1522
1523
|
|
|
1523
1524
|
[[package]]
|
|
1524
1525
|
name = "nu-ansi-term"
|
|
1525
|
-
version = "0.
|
|
1526
|
+
version = "0.50.1"
|
|
1526
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
-
checksum = "
|
|
1528
|
+
checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
|
|
1528
1529
|
dependencies = [
|
|
1529
|
-
"
|
|
1530
|
-
"winapi",
|
|
1530
|
+
"windows-sys 0.52.0",
|
|
1531
1531
|
]
|
|
1532
1532
|
|
|
1533
1533
|
[[package]]
|
|
@@ -1647,12 +1647,6 @@ version = "0.5.2"
|
|
|
1647
1647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
1648
|
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
1649
1649
|
|
|
1650
|
-
[[package]]
|
|
1651
|
-
name = "overload"
|
|
1652
|
-
version = "0.1.1"
|
|
1653
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
1655
|
-
|
|
1656
1650
|
[[package]]
|
|
1657
1651
|
name = "owo-colors"
|
|
1658
1652
|
version = "4.2.2"
|
|
@@ -1695,7 +1689,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1695
1689
|
checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
|
|
1696
1690
|
dependencies = [
|
|
1697
1691
|
"memchr",
|
|
1698
|
-
"thiserror 2.0.
|
|
1692
|
+
"thiserror 2.0.16",
|
|
1699
1693
|
"ucd-trie",
|
|
1700
1694
|
]
|
|
1701
1695
|
|
|
@@ -1855,7 +1849,7 @@ dependencies = [
|
|
|
1855
1849
|
"rustc-hash",
|
|
1856
1850
|
"rustls",
|
|
1857
1851
|
"socket2 0.5.9",
|
|
1858
|
-
"thiserror 2.0.
|
|
1852
|
+
"thiserror 2.0.16",
|
|
1859
1853
|
"tokio",
|
|
1860
1854
|
"tracing",
|
|
1861
1855
|
"web-time",
|
|
@@ -1875,7 +1869,7 @@ dependencies = [
|
|
|
1875
1869
|
"rustls",
|
|
1876
1870
|
"rustls-pki-types",
|
|
1877
1871
|
"slab",
|
|
1878
|
-
"thiserror 2.0.
|
|
1872
|
+
"thiserror 2.0.16",
|
|
1879
1873
|
"tinyvec",
|
|
1880
1874
|
"tracing",
|
|
1881
1875
|
"web-time",
|
|
@@ -1996,23 +1990,14 @@ dependencies = [
|
|
|
1996
1990
|
|
|
1997
1991
|
[[package]]
|
|
1998
1992
|
name = "regex"
|
|
1999
|
-
version = "1.11.
|
|
1993
|
+
version = "1.11.2"
|
|
2000
1994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
-
checksum = "
|
|
1995
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
2002
1996
|
dependencies = [
|
|
2003
1997
|
"aho-corasick",
|
|
2004
1998
|
"memchr",
|
|
2005
|
-
"regex-automata
|
|
2006
|
-
"regex-syntax
|
|
2007
|
-
]
|
|
2008
|
-
|
|
2009
|
-
[[package]]
|
|
2010
|
-
name = "regex-automata"
|
|
2011
|
-
version = "0.1.10"
|
|
2012
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2013
|
-
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
2014
|
-
dependencies = [
|
|
2015
|
-
"regex-syntax 0.6.29",
|
|
1999
|
+
"regex-automata",
|
|
2000
|
+
"regex-syntax",
|
|
2016
2001
|
]
|
|
2017
2002
|
|
|
2018
2003
|
[[package]]
|
|
@@ -2023,15 +2008,9 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
|
2023
2008
|
dependencies = [
|
|
2024
2009
|
"aho-corasick",
|
|
2025
2010
|
"memchr",
|
|
2026
|
-
"regex-syntax
|
|
2011
|
+
"regex-syntax",
|
|
2027
2012
|
]
|
|
2028
2013
|
|
|
2029
|
-
[[package]]
|
|
2030
|
-
name = "regex-syntax"
|
|
2031
|
-
version = "0.6.29"
|
|
2032
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
-
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
2034
|
-
|
|
2035
2014
|
[[package]]
|
|
2036
2015
|
name = "regex-syntax"
|
|
2037
2016
|
version = "0.8.5"
|
|
@@ -2040,9 +2019,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
2040
2019
|
|
|
2041
2020
|
[[package]]
|
|
2042
2021
|
name = "reqwest"
|
|
2043
|
-
version = "0.12.
|
|
2022
|
+
version = "0.12.23"
|
|
2044
2023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
-
checksum = "
|
|
2024
|
+
checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
|
|
2046
2025
|
dependencies = [
|
|
2047
2026
|
"base64 0.22.1",
|
|
2048
2027
|
"bytes",
|
|
@@ -2245,7 +2224,7 @@ dependencies = [
|
|
|
2245
2224
|
"strum",
|
|
2246
2225
|
"strum_macros",
|
|
2247
2226
|
"syn 2.0.101",
|
|
2248
|
-
"thiserror 2.0.
|
|
2227
|
+
"thiserror 2.0.16",
|
|
2249
2228
|
"typed-builder",
|
|
2250
2229
|
]
|
|
2251
2230
|
|
|
@@ -2262,9 +2241,9 @@ dependencies = [
|
|
|
2262
2241
|
|
|
2263
2242
|
[[package]]
|
|
2264
2243
|
name = "serde_json"
|
|
2265
|
-
version = "1.0.
|
|
2244
|
+
version = "1.0.143"
|
|
2266
2245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
-
checksum = "
|
|
2246
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
2268
2247
|
dependencies = [
|
|
2269
2248
|
"indexmap",
|
|
2270
2249
|
"itoa",
|
|
@@ -2286,7 +2265,7 @@ dependencies = [
|
|
|
2286
2265
|
"serde_json",
|
|
2287
2266
|
"serde_json_path_core",
|
|
2288
2267
|
"serde_json_path_macros",
|
|
2289
|
-
"thiserror 2.0.
|
|
2268
|
+
"thiserror 2.0.16",
|
|
2290
2269
|
]
|
|
2291
2270
|
|
|
2292
2271
|
[[package]]
|
|
@@ -2298,7 +2277,7 @@ dependencies = [
|
|
|
2298
2277
|
"inventory",
|
|
2299
2278
|
"serde",
|
|
2300
2279
|
"serde_json",
|
|
2301
|
-
"thiserror 2.0.
|
|
2280
|
+
"thiserror 2.0.16",
|
|
2302
2281
|
]
|
|
2303
2282
|
|
|
2304
2283
|
[[package]]
|
|
@@ -2621,11 +2600,11 @@ dependencies = [
|
|
|
2621
2600
|
|
|
2622
2601
|
[[package]]
|
|
2623
2602
|
name = "thiserror"
|
|
2624
|
-
version = "2.0.
|
|
2603
|
+
version = "2.0.16"
|
|
2625
2604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
-
checksum = "
|
|
2605
|
+
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
|
|
2627
2606
|
dependencies = [
|
|
2628
|
-
"thiserror-impl 2.0.
|
|
2607
|
+
"thiserror-impl 2.0.16",
|
|
2629
2608
|
]
|
|
2630
2609
|
|
|
2631
2610
|
[[package]]
|
|
@@ -2641,9 +2620,9 @@ dependencies = [
|
|
|
2641
2620
|
|
|
2642
2621
|
[[package]]
|
|
2643
2622
|
name = "thiserror-impl"
|
|
2644
|
-
version = "2.0.
|
|
2623
|
+
version = "2.0.16"
|
|
2645
2624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
-
checksum = "
|
|
2625
|
+
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
|
|
2647
2626
|
dependencies = [
|
|
2648
2627
|
"proc-macro2",
|
|
2649
2628
|
"quote",
|
|
@@ -2933,9 +2912,9 @@ dependencies = [
|
|
|
2933
2912
|
|
|
2934
2913
|
[[package]]
|
|
2935
2914
|
name = "tracing-indicatif"
|
|
2936
|
-
version = "0.3.
|
|
2915
|
+
version = "0.3.13"
|
|
2937
2916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
-
checksum = "
|
|
2917
|
+
checksum = "04d4e11e0e27acef25a47f27e9435355fecdc488867fa2bc90e75b0700d2823d"
|
|
2939
2918
|
dependencies = [
|
|
2940
2919
|
"indicatif",
|
|
2941
2920
|
"tracing",
|
|
@@ -2956,14 +2935,14 @@ dependencies = [
|
|
|
2956
2935
|
|
|
2957
2936
|
[[package]]
|
|
2958
2937
|
name = "tracing-subscriber"
|
|
2959
|
-
version = "0.3.
|
|
2938
|
+
version = "0.3.20"
|
|
2960
2939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
-
checksum = "
|
|
2940
|
+
checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
|
|
2962
2941
|
dependencies = [
|
|
2963
2942
|
"matchers",
|
|
2964
2943
|
"nu-ansi-term",
|
|
2965
2944
|
"once_cell",
|
|
2966
|
-
"regex",
|
|
2945
|
+
"regex-automata",
|
|
2967
2946
|
"sharded-slab",
|
|
2968
2947
|
"smallvec",
|
|
2969
2948
|
"thread_local",
|
|
@@ -2974,13 +2953,13 @@ dependencies = [
|
|
|
2974
2953
|
|
|
2975
2954
|
[[package]]
|
|
2976
2955
|
name = "tree-sitter"
|
|
2977
|
-
version = "0.25.
|
|
2956
|
+
version = "0.25.9"
|
|
2978
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
-
checksum = "
|
|
2958
|
+
checksum = "ccd2a058a86cfece0bf96f7cce1021efef9c8ed0e892ab74639173e5ed7a34fa"
|
|
2980
2959
|
dependencies = [
|
|
2981
2960
|
"cc",
|
|
2982
2961
|
"regex",
|
|
2983
|
-
"regex-syntax
|
|
2962
|
+
"regex-syntax",
|
|
2984
2963
|
"serde_json",
|
|
2985
2964
|
"streaming-iterator",
|
|
2986
2965
|
"tree-sitter-language",
|
|
@@ -3359,22 +3338,6 @@ dependencies = [
|
|
|
3359
3338
|
"rustls-pki-types",
|
|
3360
3339
|
]
|
|
3361
3340
|
|
|
3362
|
-
[[package]]
|
|
3363
|
-
name = "winapi"
|
|
3364
|
-
version = "0.3.9"
|
|
3365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3367
|
-
dependencies = [
|
|
3368
|
-
"winapi-i686-pc-windows-gnu",
|
|
3369
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
3370
|
-
]
|
|
3371
|
-
|
|
3372
|
-
[[package]]
|
|
3373
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
3374
|
-
version = "0.4.0"
|
|
3375
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3376
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3377
|
-
|
|
3378
3341
|
[[package]]
|
|
3379
3342
|
name = "winapi-util"
|
|
3380
3343
|
version = "0.1.9"
|
|
@@ -3384,12 +3347,6 @@ dependencies = [
|
|
|
3384
3347
|
"windows-sys 0.59.0",
|
|
3385
3348
|
]
|
|
3386
3349
|
|
|
3387
|
-
[[package]]
|
|
3388
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
3389
|
-
version = "0.4.0"
|
|
3390
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3391
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3392
|
-
|
|
3393
3350
|
[[package]]
|
|
3394
3351
|
name = "windows"
|
|
3395
3352
|
version = "0.61.1"
|
|
@@ -3695,7 +3652,7 @@ dependencies = [
|
|
|
3695
3652
|
"serde_json",
|
|
3696
3653
|
"serde_yaml",
|
|
3697
3654
|
"subfeature",
|
|
3698
|
-
"thiserror 2.0.
|
|
3655
|
+
"thiserror 2.0.16",
|
|
3699
3656
|
"yamlpath",
|
|
3700
3657
|
]
|
|
3701
3658
|
|
|
@@ -3706,7 +3663,7 @@ dependencies = [
|
|
|
3706
3663
|
"line-index",
|
|
3707
3664
|
"serde",
|
|
3708
3665
|
"serde_yaml",
|
|
3709
|
-
"thiserror 2.0.
|
|
3666
|
+
"thiserror 2.0.16",
|
|
3710
3667
|
"tree-sitter",
|
|
3711
3668
|
"tree-sitter-yaml",
|
|
3712
3669
|
]
|
|
@@ -3832,7 +3789,7 @@ dependencies = [
|
|
|
3832
3789
|
|
|
3833
3790
|
[[package]]
|
|
3834
3791
|
name = "zizmor"
|
|
3835
|
-
version = "1.
|
|
3792
|
+
version = "1.13.0"
|
|
3836
3793
|
dependencies = [
|
|
3837
3794
|
"annotate-snippets",
|
|
3838
3795
|
"anstream",
|
|
@@ -3870,7 +3827,7 @@ dependencies = [
|
|
|
3870
3827
|
"subfeature",
|
|
3871
3828
|
"tar",
|
|
3872
3829
|
"terminal-link",
|
|
3873
|
-
"thiserror 2.0.
|
|
3830
|
+
"thiserror 2.0.16",
|
|
3874
3831
|
"tokio",
|
|
3875
3832
|
"tower-lsp",
|
|
3876
3833
|
"tracing",
|
|
@@ -8,22 +8,23 @@ readme = "README.md"
|
|
|
8
8
|
homepage = "https://docs.zizmor.sh"
|
|
9
9
|
edition = "2024"
|
|
10
10
|
license = "MIT"
|
|
11
|
+
rust-version = "1.88.0"
|
|
11
12
|
|
|
12
13
|
[workspace.dependencies]
|
|
13
|
-
anyhow = "1.0.
|
|
14
|
-
github-actions-expressions = { path = "crates/github-actions-expressions", version = "0.0.
|
|
14
|
+
anyhow = "1.0.99"
|
|
15
|
+
github-actions-expressions = { path = "crates/github-actions-expressions", version = "0.0.10" }
|
|
15
16
|
github-actions-models = { path = "crates/github-actions-models", version = "0.32.0" }
|
|
16
17
|
itertools = "0.14.0"
|
|
17
18
|
pest = "2.8.1"
|
|
18
19
|
pest_derive = "2.8.1"
|
|
19
20
|
pretty_assertions = "1.4.1"
|
|
20
|
-
annotate-snippets = "0.
|
|
21
|
+
annotate-snippets = "0.12.3"
|
|
21
22
|
anstream = "0.6.20"
|
|
22
23
|
assert_cmd = "2.0.17"
|
|
23
|
-
camino = "1.1.
|
|
24
|
-
clap = "4.5.
|
|
25
|
-
clap-verbosity-flag = { version = "3.0.
|
|
26
|
-
clap_complete = "4.5.
|
|
24
|
+
camino = "1.1.12"
|
|
25
|
+
clap = "4.5.47"
|
|
26
|
+
clap-verbosity-flag = { version = "3.0.4", default-features = false }
|
|
27
|
+
clap_complete = "4.5.57"
|
|
27
28
|
clap_complete_nushell = "4.5.8"
|
|
28
29
|
csv = "1.3.1"
|
|
29
30
|
etcetera = "0.10.0"
|
|
@@ -32,31 +33,31 @@ fst = "0.4.7"
|
|
|
32
33
|
http-cache-reqwest = "0.16"
|
|
33
34
|
human-panic = "2.0.3"
|
|
34
35
|
ignore = "0.4.23"
|
|
35
|
-
indexmap = { version = "2.
|
|
36
|
+
indexmap = { version = "2.11.0", features = ["serde"] }
|
|
36
37
|
indicatif = "0.18"
|
|
37
|
-
insta = "1.43.
|
|
38
|
+
insta = "1.43.2"
|
|
38
39
|
jsonschema = "0.30.0"
|
|
39
40
|
line-index = "0.1.2"
|
|
40
41
|
memchr = "2.7.5"
|
|
41
42
|
owo-colors = "4.2.2"
|
|
42
|
-
regex = "1.11.
|
|
43
|
-
reqwest = { version = "0.12.
|
|
43
|
+
regex = "1.11.2"
|
|
44
|
+
reqwest = { version = "0.12.23", default-features = false }
|
|
44
45
|
reqwest-middleware = "0.4.2"
|
|
45
46
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
46
47
|
serde-sarif = "0.8.0"
|
|
47
|
-
serde_json = "1.0.
|
|
48
|
+
serde_json = "1.0.143"
|
|
48
49
|
serde_json_path = "0.7.2"
|
|
49
50
|
serde_yaml = "0.9.34"
|
|
50
51
|
subfeature = { path = "crates/subfeature", version = "0.0.3" }
|
|
51
52
|
tar = "0.4.44"
|
|
52
53
|
terminal-link = "0.1.0"
|
|
53
|
-
thiserror = "2.0.
|
|
54
|
+
thiserror = "2.0.16"
|
|
54
55
|
tokio = { version = "1.47.1", features = ["rt-multi-thread", "io-std"] }
|
|
55
56
|
tower-lsp = { version = "0.20.0" }
|
|
56
57
|
tracing = "0.1.41"
|
|
57
|
-
tracing-indicatif = "0.3.
|
|
58
|
-
tracing-subscriber = "0.3.
|
|
59
|
-
tree-sitter = "0.25.
|
|
58
|
+
tracing-indicatif = "0.3.13"
|
|
59
|
+
tracing-subscriber = "0.3.20"
|
|
60
|
+
tree-sitter = "0.25.9"
|
|
60
61
|
tree-sitter-bash = "0.23.3"
|
|
61
62
|
tree-sitter-powershell = "0.25.8"
|
|
62
63
|
yamlpath = { path = "crates/yamlpath", version = "0.25.0" }
|
zizmor-1.13.0/PKG-INFO
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zizmor
|
|
3
|
+
Version: 1.13.0
|
|
4
|
+
License-File: LICENSE
|
|
5
|
+
Home-Page: https://docs.zizmor.sh
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
8
|
+
|
|
9
|
+
# 🌈 zizmor
|
|
10
|
+
|
|
11
|
+
[](https://zizmor.sh/)
|
|
12
|
+
[](https://github.com/zizmorcore/zizmor/actions/workflows/ci.yml)
|
|
13
|
+
[](https://crates.io/crates/zizmor)
|
|
14
|
+
[](https://repology.org/project/zizmor/versions)
|
|
15
|
+
[](https://github.com/sponsors/woodruffw)
|
|
16
|
+
[](https://discord.com/invite/PGU3zGZuGG)
|
|
17
|
+
|
|
18
|
+
`zizmor` is a static analysis tool for GitHub Actions.
|
|
19
|
+
|
|
20
|
+
It can find many common security issues in typical GitHub Actions CI/CD setups,
|
|
21
|
+
including:
|
|
22
|
+
|
|
23
|
+
* Template injection vulnerabilities, leading to attacker-controlled code execution
|
|
24
|
+
* Accidental credential persistence and leakage
|
|
25
|
+
* Excessive permission scopes and credential grants to runners
|
|
26
|
+
* Impostor commits and confusable `git` references
|
|
27
|
+
* ...[and much more]!
|
|
28
|
+
|
|
29
|
+
[and much more]: https://docs.zizmor.sh/audits/
|
|
30
|
+
|
|
31
|
+

|
|
32
|
+
|
|
33
|
+
See [`zizmor`'s documentation](https://docs.zizmor.sh/)
|
|
34
|
+
for [installation steps], as well as a [quickstart] and
|
|
35
|
+
[detailed usage recipes].
|
|
36
|
+
|
|
37
|
+
[please file them]: https://github.com/zizmorcore/zizmor/issues/new?assignees=&labels=bug%2Ctriage&projects=&template=bug-report.yml&title=%5BBUG%5D%3A+
|
|
38
|
+
|
|
39
|
+
[installation steps]: https://docs.zizmor.sh/installation/
|
|
40
|
+
|
|
41
|
+
[quickstart]: https://docs.zizmor.sh/quickstart/
|
|
42
|
+
|
|
43
|
+
[detailed usage recipes]: https://docs.zizmor.sh/usage/
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
`zizmor` is licensed under the [MIT License](./LICENSE).
|
|
48
|
+
|
|
49
|
+
## Contributing
|
|
50
|
+
|
|
51
|
+
See [our contributing guide!](./CONTRIBUTING.md)
|
|
52
|
+
|
|
53
|
+
## The name?
|
|
54
|
+
|
|
55
|
+
*[Now you can have beautiful clean workflows!]*
|
|
56
|
+
|
|
57
|
+
[Now you can have beautiful clean workflows!]: https://www.youtube.com/watch?v=ol7rxFCvpy8
|
|
58
|
+
|
|
59
|
+
## Sponsors 💖
|
|
60
|
+
|
|
61
|
+
`zizmor`'s development is supported by these amazing sponsors!
|
|
62
|
+
|
|
63
|
+
<!-- @@begin-sponsors@@ -->
|
|
64
|
+
<table width="100%">
|
|
65
|
+
<caption>Logo-level sponsors</caption>
|
|
66
|
+
<tbody>
|
|
67
|
+
<tr>
|
|
68
|
+
<td align="center" valign="top" width="15%">
|
|
69
|
+
<a href="https://grafana.com/">
|
|
70
|
+
<img src="https://avatars.githubusercontent.com/u/7195757?s=100&v=4" width="100px">
|
|
71
|
+
<br>
|
|
72
|
+
Grafana Labs
|
|
73
|
+
</a>
|
|
74
|
+
</td>
|
|
75
|
+
<td align="center" valign="top" width="15%">
|
|
76
|
+
<a href="https://trailofbits.com/">
|
|
77
|
+
<img src="https://avatars.githubusercontent.com/u/2314423?s=100&v=4" width="100px">
|
|
78
|
+
<br>
|
|
79
|
+
Trail of Bits
|
|
80
|
+
</a>
|
|
81
|
+
</td>
|
|
82
|
+
</tr>
|
|
83
|
+
</tbody>
|
|
84
|
+
</table>
|
|
85
|
+
<hr align="center">
|
|
86
|
+
<table width="100%">
|
|
87
|
+
<caption>Name-level sponsors</caption>
|
|
88
|
+
<tbody>
|
|
89
|
+
<tr>
|
|
90
|
+
<td align="center" valign="top">
|
|
91
|
+
<a href="http://tenki.cloud/">
|
|
92
|
+
Tenki Cloud
|
|
93
|
+
</a>
|
|
94
|
+
</td>
|
|
95
|
+
<td align="center" valign="top">
|
|
96
|
+
<a href="https://github.com/ariccio">
|
|
97
|
+
Alexander Riccio
|
|
98
|
+
</a>
|
|
99
|
+
</td>
|
|
100
|
+
</tr>
|
|
101
|
+
</tbody>
|
|
102
|
+
</table>
|
|
103
|
+
<!-- @@end-sponsors@@ -->
|
|
104
|
+
|
|
105
|
+
Want to see your name or logo above? Consider becoming a sponsor
|
|
106
|
+
through one of the following:
|
|
107
|
+
|
|
108
|
+
- [GitHub Sponsors](https://github.com/sponsors/woodruffw) (preferred)
|
|
109
|
+
- [thanks.dev](https://thanks.dev/u/gh/woodruffw)
|
|
110
|
+
- [ko-fi](https://ko-fi.com/woodruffw)
|
|
111
|
+
|
|
112
|
+
## Star History
|
|
113
|
+
|
|
114
|
+
<a href="https://star-history.com/#zizmorcore/zizmor&Date">
|
|
115
|
+
<picture>
|
|
116
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=zizmorcore/zizmor&type=Date&theme=dark" />
|
|
117
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=zizmorcore/zizmor&type=Date" />
|
|
118
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=zizmorcore/zizmor&type=Date" />
|
|
119
|
+
</picture>
|
|
120
|
+
</a>
|
|
121
|
+
|