zizmor 1.12.1__tar.gz → 1.14.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.1 → zizmor-1.14.0}/Cargo.lock +94 -125
- {zizmor-1.12.1 → zizmor-1.14.0}/Cargo.toml +20 -20
- zizmor-1.14.0/PKG-INFO +128 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-expressions/Cargo.toml +2 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-expressions/README.md +6 -0
- zizmor-1.14.0/crates/github-actions-expressions/src/call.rs +1050 -0
- zizmor-1.14.0/crates/github-actions-expressions/src/identifier.rs +31 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-expressions/src/lib.rs +404 -125
- zizmor-1.14.0/crates/github-actions-expressions/src/literal.rs +75 -0
- zizmor-1.14.0/crates/github-actions-expressions/src/op.rs +80 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/Cargo.toml +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/README.md +7 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/anonymous_definition.rs +2 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/artipacked.rs +12 -12
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/bot_conditions.rs +12 -14
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/cache_poisoning.rs +21 -17
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/dangerous_triggers.rs +7 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/excessive_permissions.rs +3 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/forbidden_uses.rs +21 -30
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/github_env.rs +10 -15
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/hardcoded_container_credentials.rs +2 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/impostor_commit.rs +8 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/insecure_commands.rs +13 -12
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/known_vulnerable_actions.rs +48 -53
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/mod.rs +65 -26
- zizmor-1.14.0/crates/zizmor/src/audit/obfuscation.rs +435 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/overprovisioned_secrets.rs +3 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/ref_confusion.rs +7 -2
- zizmor-1.14.0/crates/zizmor/src/audit/ref_version_mismatch.rs +162 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/secrets_inherit.rs +2 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/self_hosted_runner.rs +6 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/stale_action_refs.rs +8 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/template_injection.rs +18 -17
- zizmor-1.14.0/crates/zizmor/src/audit/undocumented_permissions.rs +129 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/unpinned_images.rs +2 -1
- zizmor-1.14.0/crates/zizmor/src/audit/unpinned_uses.rs +143 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/unredacted_secrets.rs +4 -3
- zizmor-1.14.0/crates/zizmor/src/audit/unsound_condition.rs +528 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/unsound_contains.rs +22 -17
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/audit/use_trusted_publishing.rs +57 -13
- zizmor-1.14.0/crates/zizmor/src/config.rs +654 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/finding/location.rs +22 -8
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/finding.rs +13 -35
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/github_api.rs +235 -112
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/lsp.rs +32 -21
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/main.rs +278 -213
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/models/action.rs +3 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/models/coordinate.rs +10 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/models/uses.rs +26 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/models/workflow.rs +7 -7
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/output/fix.rs +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/output/github.rs +0 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/output/plain.rs +47 -29
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/output/sarif.rs +0 -2
- zizmor-1.14.0/crates/zizmor/src/registry/input.rs +663 -0
- zizmor-1.14.0/crates/zizmor/src/registry.rs +223 -0
- zizmor-1.14.0/crates/zizmor/src/state.rs +28 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/utils.rs +16 -8
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/acceptance.rs +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/common.rs +43 -12
- zizmor-1.14.0/crates/zizmor/tests/integration/config.rs +234 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/e2e.rs +77 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/main.rs +2 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshot.rs +118 -1
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__disablement.snap +6 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_dotgithub.snap +9 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_dotgithub_from_file_input.snap +9 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root.snap +9 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root_from_child_dir.snap +9 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root_from_file_input.snap +9 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_dotgithub.snap +19 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_dotgithub_from_file_input.snap +19 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root.snap +19 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root_from_child_dir.snap +19 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root_from_file_input.snap +19 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__invalid_configs-2.snap +14 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__invalid_configs-3.snap +11 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__config__invalid_configs.snap +14 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__gha_hazmat.snap +140 -118
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +14 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict-2.snap +2 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict.snap +2 -1
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1065.snap +35 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1116_strict_collection_remote_input-2.snap +8 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1116_strict_collection_remote_input.snap +10 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_569.snap +4 -15
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_726.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie-2.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__pr_960_backstop.snap +1 -1
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__e2e__warn_on_min_confidence_unknown.snap +6 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__e2e__warn_on_min_severity_unknown.snap +6 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__anonymous_definition.snap +5 -4
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-2.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-3.snap +4 -4
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-4.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-5.snap +5 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__bot_conditions.snap +28 -33
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-10.snap +3 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-11.snap +7 -13
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-12.snap +3 -6
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-13.snap +3 -6
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-15.snap +4 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-16.snap +5 -10
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-17.snap +39 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-2.snap +3 -6
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-3.snap +3 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-4.snap +3 -6
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-5.snap +3 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-8.snap +3 -6
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-9.snap +3 -5
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve-2.snap +8 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve.snap +8 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve_no_gh_token.snap +11 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve_offline.snap +11 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-10.snap +6 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-11.snap +4 -4
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-12.snap +13 -9
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-2.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-3.snap +9 -7
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-4.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-5.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-7.snap +7 -9
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-8.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-9.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-2.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-3.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-4.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-5.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-6.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-2.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-3.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_output.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-2.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-3.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-4.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation-2.snap +2 -2
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation-3.snap +5 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation.snap +192 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__overprovisioned_secrets.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion-2.snap +1 -1
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion.snap +2 -2
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_version_mismatch.snap +15 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__secrets_inherit.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-3.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-4.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-5.snap +5 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-6.snap +5 -5
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__stale_action_refs.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-11.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-12.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-13.snap +24 -48
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-14.snap +15 -18
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-15.snap +27 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-2.snap +6 -6
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-4.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-5.snap +7 -7
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-6.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-8.snap +8 -9
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection.snap +5 -5
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-2.snap +5 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-3.snap +13 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-4.snap +5 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-5.snap +5 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-6.snap +21 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-7.snap +47 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions.snap +55 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config-2.snap +1 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config.snap +1 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-default-config.snap +1 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-empty-config.snap +1 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-hash-pin-everything-config.snap +1 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_images.snap +1 -1
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-10.snap +14 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-11.snap +14 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-12.snap +11 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-2.snap +3 -4
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-3.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-5.snap +9 -6
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-6.snap +14 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-7.snap +14 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-8.snap +14 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-9.snap +14 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses.snap +3 -4
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unredacted_secrets.snap +3 -3
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_condition.snap +139 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_contains.snap +2 -2
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-2.snap +3 -3
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-3.snap +33 -34
- zizmor-1.14.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-4.snap +179 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing.snap +17 -18
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-1152-repro.yml +45 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-dotgithub/.github/workflows/hackme.yml +16 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-dotgithub/.github/zizmor.yml +4 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-root/.github/workflows/hackme.yml +16 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-root/zizmor.yml +4 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/disablement/.github/workflows/hackme.yml +16 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/disablement/zizmor.yml +3 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/zizmor.invalid-schema-1.yml +10 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/zizmor.invalid-schema-2.yml +8 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/config-scenarios/zizmor.invalid-schema-3.yml +8 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-336-repro.yml +1 -1
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/issue-1065.yml +24 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/neutral.yml +13 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/obfuscation/issue-1177-repro.yml +16 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/obfuscation.yml +3 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/ref-version-mismatch.yml +28 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/contents-read-only.yml +20 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/contents-read-with-other.yml +18 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/documented.yml +49 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/empty-permissions.yml +18 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/undocumented-permissions/partially-documented.yml +37 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/undocumented-permissions.yml +75 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unsound-condition.yml +30 -0
- zizmor-1.14.0/crates/zizmor/tests/integration/test-data/use-trusted-publishing/npm-publish.yml +136 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/pyproject.toml +1 -2
- zizmor-1.12.1/PKG-INFO +0 -6
- zizmor-1.12.1/crates/zizmor/src/audit/obfuscation.rs +0 -174
- zizmor-1.12.1/crates/zizmor/src/audit/unpinned_uses.rs +0 -301
- zizmor-1.12.1/crates/zizmor/src/audit/unsound_condition.rs +0 -122
- zizmor-1.12.1/crates/zizmor/src/config.rs +0 -227
- zizmor-1.12.1/crates/zizmor/src/registry.rs +0 -583
- zizmor-1.12.1/crates/zizmor/src/state.rs +0 -51
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +0 -9
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__anonymous_definition-2.snap +0 -28
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve.snap +0 -7
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation.snap +0 -189
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-15.snap +0 -29
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-10.snap +0 -11
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-11.snap +0 -11
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-12.snap +0 -11
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-6.snap +0 -11
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-7.snap +0 -11
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-8.snap +0 -11
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-9.snap +0 -11
- zizmor-1.12.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_condition.snap +0 -35
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-expressions/src/context.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-expressions/src/expr.pest +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/Cargo.toml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/LICENSE +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/README.md +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/action.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/common/expr.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/common.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/dependabot/mod.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/dependabot/v2.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/lib.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/workflow/event.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/workflow/job.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/src/workflow/mod.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-actions/gh-action-pip-audit.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-actions/gh-action-pypi-publish.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-actions/gh-action-sigstore-python.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-actions/no-input-output-descriptions.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-actions/setup-python.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-dependabot/v2/pip-audit.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-dependabot/v2/sigstore-python.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/adafruit-circuitpython-run-tests.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/false-condition.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/gh-action-sigstore-python-selftest.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/git-annex-built-windows.yaml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/guacsec-guac-ci.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/homebrew-core-automerge-triggers.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/homebrew-core-dispatch-rebottle.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/intel-llvm-sycl-linux-run-tests.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/issue-35.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/jazzband-tablib-docs-lint.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/letsencrypt-boulder-boulder-ci.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/mhils-workflows-python-deploy.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/openbao-openbao-test-go.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/pip-api-test.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/pip-audit-ci.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/pip-audit-scorecards.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/pwn-requests.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/pyca-cryptography-ci.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/pypi-attestations-release.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/reusable-workflow-unpinned.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/rnpgp-rnp-centos-and-fedora.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/runs-on-expr.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/runs-on-group-only.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/scalar-trigger-type.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/vil02-puzzle_generator-check_examples.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-646.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-650.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/test_action.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/test_dependabot_v2.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/github-actions-models/tests/test_workflow.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/subfeature/.gitignore +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/subfeature/Cargo.toml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/subfeature/LICENSE +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/subfeature/README.md +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/subfeature/src/lib.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpatch/Cargo.toml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpatch/LICENSE +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpatch/README.md +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpatch/src/lib.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpatch/tests/unit_tests.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/Cargo.toml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/LICENSE +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/README.md +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/src/lib.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/integration_test.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/basic.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/comments.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/directives.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/exact-features.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/flow.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/interceding-comment.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/key-only-features.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/yamlpath/tests/testcases/quoted-key.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/build.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/data/codeql-injection-sinks.json +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/data/context-capabilities.csv +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/data/github-action.json +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/data/github-workflow.json +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/models/inputs.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/models.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/output/json/mod.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/output/json/v1.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/src/output/mod.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/e2e/json_v1.rs +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/e2e/snapshots/integration__e2e__json_v1__json_v1.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-10.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-2.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-3.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-4.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-5.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-6.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-7.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-8.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-9.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_612_repro.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-14.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-6.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-7.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-2.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-7.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-8.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-10.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-3.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-7.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-9.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-ref-pin-everything-config.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-4.snap +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/anonymous-definition.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/artipacked/demo-action/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/artipacked/issue-447-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/artipacked.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/bot-conditions.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-disabled-by-default.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-enabled-by-default.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-not-configurable.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolean-toggle.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolish-toggle.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-expression.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-multi-value-toggle.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-out.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-1081-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-343-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-378-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-642-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/no-cache-aware-steps.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/publisher-step.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-release-branch-trigger.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-tag-trigger.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/cache-poisoning.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/dummy-action-2/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/another-dummy.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/dummy.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/ignored.yaml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.gitignore +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/README.md +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/dummy-action-1/action.yaml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-472-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/jobs-broaden-permissions.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-call.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-other-triggers.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms-all-jobs-explicit.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-empty-perms.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-read-all.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-all.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-explicit.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/excessive-permissions.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-all.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some-refs.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-all.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some-refs.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/forbidden-uses-menagerie.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/github-env/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/github-env/github-path.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/github-env/issue-397-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/github_env.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/hardcoded-credentials.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/inlined-ignores.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/insecure-commands/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/insecure-commands/issue-839-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/insecure-commands.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-1.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-2.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/blank.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/comment-only.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/empty-action/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/empty.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-1/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-2/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow-2.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/issue-612-repro/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/obfuscation/computed-indices.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/overprovisioned-secrets.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/pr-960-backstop/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/ref-confusion/issue-518-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/ref-confusion.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/secrets-inherit.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/self-hosted/issue-283-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-dimension.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-exclusion.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-inclusion.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-group.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-label.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/self-hosted.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/several-vulnerabilities.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/stale-action-refs.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/addnab-docker-run-action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/codeql-sinks.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/dataflow.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/false-positive-menagerie.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/input-caps.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-22-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-339-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-418-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-749-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-883-repro/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-988-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/multiline-expression.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/patterns.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/pr-317-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/pr-425-backstop/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/pwsh-script.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/static-env.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-dynamic-matrix.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-static-matrix.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/template-injection.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-images.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite-2.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/empty.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/hash-pin-everything.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-1.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-2.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-3.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-4.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-5.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-6.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-wrong-policy-object.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/ref-pin-everything.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-433-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-659-repro.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/menagerie-of-uses.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unpinned-uses.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unredacted-secrets.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/unsound-contains.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/cargo-publish.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.0}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/demo-action/action.yml +0 -0
- {zizmor-1.12.1 → zizmor-1.14.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.4"
|
|
56
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
-
checksum = "
|
|
57
|
+
checksum = "a8ee2f071d418442e50c643c4e7a4051ce3abd9dba11713cc6cdf4f4a3f3cca5"
|
|
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.100"
|
|
116
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
117
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
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,11 +302,11 @@ dependencies = [
|
|
|
302
302
|
|
|
303
303
|
[[package]]
|
|
304
304
|
name = "camino"
|
|
305
|
-
version = "1.
|
|
305
|
+
version = "1.2.0"
|
|
306
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "
|
|
307
|
+
checksum = "e1de8bc0aa9e9385ceb3bf0c152e3a9b9544f6c4a912c8ae504e80c1f0368603"
|
|
308
308
|
dependencies = [
|
|
309
|
-
"
|
|
309
|
+
"serde_core",
|
|
310
310
|
]
|
|
311
311
|
|
|
312
312
|
[[package]]
|
|
@@ -332,9 +332,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
332
332
|
|
|
333
333
|
[[package]]
|
|
334
334
|
name = "clap"
|
|
335
|
-
version = "4.5.
|
|
335
|
+
version = "4.5.48"
|
|
336
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
-
checksum = "
|
|
337
|
+
checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
|
|
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.48"
|
|
356
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
357
|
+
checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
|
|
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.58"
|
|
368
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
-
checksum = "
|
|
369
|
+
checksum = "75bf0b32ad2e152de789bb635ea4d3078f6b838ad7974143e99b99f45a04af4a"
|
|
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,13 +1230,14 @@ dependencies = [
|
|
|
1229
1230
|
|
|
1230
1231
|
[[package]]
|
|
1231
1232
|
name = "indexmap"
|
|
1232
|
-
version = "2.
|
|
1233
|
+
version = "2.11.4"
|
|
1233
1234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
-
checksum = "
|
|
1235
|
+
checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
|
|
1235
1236
|
dependencies = [
|
|
1236
1237
|
"equivalent",
|
|
1237
1238
|
"hashbrown 0.15.2",
|
|
1238
1239
|
"serde",
|
|
1240
|
+
"serde_core",
|
|
1239
1241
|
]
|
|
1240
1242
|
|
|
1241
1243
|
[[package]]
|
|
@@ -1254,9 +1256,9 @@ dependencies = [
|
|
|
1254
1256
|
|
|
1255
1257
|
[[package]]
|
|
1256
1258
|
name = "insta"
|
|
1257
|
-
version = "1.43.
|
|
1259
|
+
version = "1.43.2"
|
|
1258
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
-
checksum = "
|
|
1261
|
+
checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
|
|
1260
1262
|
dependencies = [
|
|
1261
1263
|
"console 0.15.11",
|
|
1262
1264
|
"once_cell",
|
|
@@ -1350,7 +1352,7 @@ dependencies = [
|
|
|
1350
1352
|
"percent-encoding",
|
|
1351
1353
|
"referencing",
|
|
1352
1354
|
"regex",
|
|
1353
|
-
"regex-syntax
|
|
1355
|
+
"regex-syntax",
|
|
1354
1356
|
"reqwest",
|
|
1355
1357
|
"serde",
|
|
1356
1358
|
"serde_json",
|
|
@@ -1433,11 +1435,11 @@ dependencies = [
|
|
|
1433
1435
|
|
|
1434
1436
|
[[package]]
|
|
1435
1437
|
name = "matchers"
|
|
1436
|
-
version = "0.
|
|
1438
|
+
version = "0.2.0"
|
|
1437
1439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
-
checksum = "
|
|
1440
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1439
1441
|
dependencies = [
|
|
1440
|
-
"regex-automata
|
|
1442
|
+
"regex-automata",
|
|
1441
1443
|
]
|
|
1442
1444
|
|
|
1443
1445
|
[[package]]
|
|
@@ -1522,12 +1524,11 @@ dependencies = [
|
|
|
1522
1524
|
|
|
1523
1525
|
[[package]]
|
|
1524
1526
|
name = "nu-ansi-term"
|
|
1525
|
-
version = "0.
|
|
1527
|
+
version = "0.50.1"
|
|
1526
1528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
-
checksum = "
|
|
1529
|
+
checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
|
|
1528
1530
|
dependencies = [
|
|
1529
|
-
"
|
|
1530
|
-
"winapi",
|
|
1531
|
+
"windows-sys 0.52.0",
|
|
1531
1532
|
]
|
|
1532
1533
|
|
|
1533
1534
|
[[package]]
|
|
@@ -1647,12 +1648,6 @@ version = "0.5.2"
|
|
|
1647
1648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
1649
|
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
1649
1650
|
|
|
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
1651
|
[[package]]
|
|
1657
1652
|
name = "owo-colors"
|
|
1658
1653
|
version = "4.2.2"
|
|
@@ -1690,20 +1685,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1690
1685
|
|
|
1691
1686
|
[[package]]
|
|
1692
1687
|
name = "pest"
|
|
1693
|
-
version = "2.8.
|
|
1688
|
+
version = "2.8.2"
|
|
1694
1689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
-
checksum = "
|
|
1690
|
+
checksum = "21e0a3a33733faeaf8651dfee72dd0f388f0c8e5ad496a3478fa5a922f49cfa8"
|
|
1696
1691
|
dependencies = [
|
|
1697
1692
|
"memchr",
|
|
1698
|
-
"thiserror 2.0.
|
|
1693
|
+
"thiserror 2.0.16",
|
|
1699
1694
|
"ucd-trie",
|
|
1700
1695
|
]
|
|
1701
1696
|
|
|
1702
1697
|
[[package]]
|
|
1703
1698
|
name = "pest_derive"
|
|
1704
|
-
version = "2.8.
|
|
1699
|
+
version = "2.8.2"
|
|
1705
1700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
-
checksum = "
|
|
1701
|
+
checksum = "bc58706f770acb1dbd0973e6530a3cff4746fb721207feb3a8a6064cd0b6c663"
|
|
1707
1702
|
dependencies = [
|
|
1708
1703
|
"pest",
|
|
1709
1704
|
"pest_generator",
|
|
@@ -1711,9 +1706,9 @@ dependencies = [
|
|
|
1711
1706
|
|
|
1712
1707
|
[[package]]
|
|
1713
1708
|
name = "pest_generator"
|
|
1714
|
-
version = "2.8.
|
|
1709
|
+
version = "2.8.2"
|
|
1715
1710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
-
checksum = "
|
|
1711
|
+
checksum = "6d4f36811dfe07f7b8573462465d5cb8965fffc2e71ae377a33aecf14c2c9a2f"
|
|
1717
1712
|
dependencies = [
|
|
1718
1713
|
"pest",
|
|
1719
1714
|
"pest_meta",
|
|
@@ -1724,9 +1719,9 @@ dependencies = [
|
|
|
1724
1719
|
|
|
1725
1720
|
[[package]]
|
|
1726
1721
|
name = "pest_meta"
|
|
1727
|
-
version = "2.8.
|
|
1722
|
+
version = "2.8.2"
|
|
1728
1723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
-
checksum = "
|
|
1724
|
+
checksum = "42919b05089acbd0a5dcd5405fb304d17d1053847b81163d09c4ad18ce8e8420"
|
|
1730
1725
|
dependencies = [
|
|
1731
1726
|
"pest",
|
|
1732
1727
|
"sha2",
|
|
@@ -1855,7 +1850,7 @@ dependencies = [
|
|
|
1855
1850
|
"rustc-hash",
|
|
1856
1851
|
"rustls",
|
|
1857
1852
|
"socket2 0.5.9",
|
|
1858
|
-
"thiserror 2.0.
|
|
1853
|
+
"thiserror 2.0.16",
|
|
1859
1854
|
"tokio",
|
|
1860
1855
|
"tracing",
|
|
1861
1856
|
"web-time",
|
|
@@ -1875,7 +1870,7 @@ dependencies = [
|
|
|
1875
1870
|
"rustls",
|
|
1876
1871
|
"rustls-pki-types",
|
|
1877
1872
|
"slab",
|
|
1878
|
-
"thiserror 2.0.
|
|
1873
|
+
"thiserror 2.0.16",
|
|
1879
1874
|
"tinyvec",
|
|
1880
1875
|
"tracing",
|
|
1881
1876
|
"web-time",
|
|
@@ -1996,23 +1991,14 @@ dependencies = [
|
|
|
1996
1991
|
|
|
1997
1992
|
[[package]]
|
|
1998
1993
|
name = "regex"
|
|
1999
|
-
version = "1.11.
|
|
1994
|
+
version = "1.11.2"
|
|
2000
1995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
-
checksum = "
|
|
1996
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
2002
1997
|
dependencies = [
|
|
2003
1998
|
"aho-corasick",
|
|
2004
1999
|
"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",
|
|
2000
|
+
"regex-automata",
|
|
2001
|
+
"regex-syntax",
|
|
2016
2002
|
]
|
|
2017
2003
|
|
|
2018
2004
|
[[package]]
|
|
@@ -2023,15 +2009,9 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
|
2023
2009
|
dependencies = [
|
|
2024
2010
|
"aho-corasick",
|
|
2025
2011
|
"memchr",
|
|
2026
|
-
"regex-syntax
|
|
2012
|
+
"regex-syntax",
|
|
2027
2013
|
]
|
|
2028
2014
|
|
|
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
2015
|
[[package]]
|
|
2036
2016
|
name = "regex-syntax"
|
|
2037
2017
|
version = "0.8.5"
|
|
@@ -2040,9 +2020,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
2040
2020
|
|
|
2041
2021
|
[[package]]
|
|
2042
2022
|
name = "reqwest"
|
|
2043
|
-
version = "0.12.
|
|
2023
|
+
version = "0.12.23"
|
|
2044
2024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
-
checksum = "
|
|
2025
|
+
checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
|
|
2046
2026
|
dependencies = [
|
|
2047
2027
|
"base64 0.22.1",
|
|
2048
2028
|
"bytes",
|
|
@@ -2222,10 +2202,11 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2222
2202
|
|
|
2223
2203
|
[[package]]
|
|
2224
2204
|
name = "serde"
|
|
2225
|
-
version = "1.0.
|
|
2205
|
+
version = "1.0.226"
|
|
2226
2206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
-
checksum = "
|
|
2207
|
+
checksum = "0dca6411025b24b60bfa7ec1fe1f8e710ac09782dca409ee8237ba74b51295fd"
|
|
2228
2208
|
dependencies = [
|
|
2209
|
+
"serde_core",
|
|
2229
2210
|
"serde_derive",
|
|
2230
2211
|
]
|
|
2231
2212
|
|
|
@@ -2245,15 +2226,24 @@ dependencies = [
|
|
|
2245
2226
|
"strum",
|
|
2246
2227
|
"strum_macros",
|
|
2247
2228
|
"syn 2.0.101",
|
|
2248
|
-
"thiserror 2.0.
|
|
2229
|
+
"thiserror 2.0.16",
|
|
2249
2230
|
"typed-builder",
|
|
2250
2231
|
]
|
|
2251
2232
|
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "serde_core"
|
|
2235
|
+
version = "1.0.226"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"serde_derive",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2252
2242
|
[[package]]
|
|
2253
2243
|
name = "serde_derive"
|
|
2254
|
-
version = "1.0.
|
|
2244
|
+
version = "1.0.226"
|
|
2255
2245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
-
checksum = "
|
|
2246
|
+
checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
|
|
2257
2247
|
dependencies = [
|
|
2258
2248
|
"proc-macro2",
|
|
2259
2249
|
"quote",
|
|
@@ -2262,15 +2252,16 @@ dependencies = [
|
|
|
2262
2252
|
|
|
2263
2253
|
[[package]]
|
|
2264
2254
|
name = "serde_json"
|
|
2265
|
-
version = "1.0.
|
|
2255
|
+
version = "1.0.145"
|
|
2266
2256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
-
checksum = "
|
|
2257
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2268
2258
|
dependencies = [
|
|
2269
2259
|
"indexmap",
|
|
2270
2260
|
"itoa",
|
|
2271
2261
|
"memchr",
|
|
2272
2262
|
"ryu",
|
|
2273
2263
|
"serde",
|
|
2264
|
+
"serde_core",
|
|
2274
2265
|
]
|
|
2275
2266
|
|
|
2276
2267
|
[[package]]
|
|
@@ -2286,7 +2277,7 @@ dependencies = [
|
|
|
2286
2277
|
"serde_json",
|
|
2287
2278
|
"serde_json_path_core",
|
|
2288
2279
|
"serde_json_path_macros",
|
|
2289
|
-
"thiserror 2.0.
|
|
2280
|
+
"thiserror 2.0.16",
|
|
2290
2281
|
]
|
|
2291
2282
|
|
|
2292
2283
|
[[package]]
|
|
@@ -2298,7 +2289,7 @@ dependencies = [
|
|
|
2298
2289
|
"inventory",
|
|
2299
2290
|
"serde",
|
|
2300
2291
|
"serde_json",
|
|
2301
|
-
"thiserror 2.0.
|
|
2292
|
+
"thiserror 2.0.16",
|
|
2302
2293
|
]
|
|
2303
2294
|
|
|
2304
2295
|
[[package]]
|
|
@@ -2621,11 +2612,11 @@ dependencies = [
|
|
|
2621
2612
|
|
|
2622
2613
|
[[package]]
|
|
2623
2614
|
name = "thiserror"
|
|
2624
|
-
version = "2.0.
|
|
2615
|
+
version = "2.0.16"
|
|
2625
2616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
-
checksum = "
|
|
2617
|
+
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
|
|
2627
2618
|
dependencies = [
|
|
2628
|
-
"thiserror-impl 2.0.
|
|
2619
|
+
"thiserror-impl 2.0.16",
|
|
2629
2620
|
]
|
|
2630
2621
|
|
|
2631
2622
|
[[package]]
|
|
@@ -2641,9 +2632,9 @@ dependencies = [
|
|
|
2641
2632
|
|
|
2642
2633
|
[[package]]
|
|
2643
2634
|
name = "thiserror-impl"
|
|
2644
|
-
version = "2.0.
|
|
2635
|
+
version = "2.0.16"
|
|
2645
2636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
-
checksum = "
|
|
2637
|
+
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
|
|
2647
2638
|
dependencies = [
|
|
2648
2639
|
"proc-macro2",
|
|
2649
2640
|
"quote",
|
|
@@ -2933,9 +2924,9 @@ dependencies = [
|
|
|
2933
2924
|
|
|
2934
2925
|
[[package]]
|
|
2935
2926
|
name = "tracing-indicatif"
|
|
2936
|
-
version = "0.3.
|
|
2927
|
+
version = "0.3.13"
|
|
2937
2928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
-
checksum = "
|
|
2929
|
+
checksum = "04d4e11e0e27acef25a47f27e9435355fecdc488867fa2bc90e75b0700d2823d"
|
|
2939
2930
|
dependencies = [
|
|
2940
2931
|
"indicatif",
|
|
2941
2932
|
"tracing",
|
|
@@ -2956,14 +2947,14 @@ dependencies = [
|
|
|
2956
2947
|
|
|
2957
2948
|
[[package]]
|
|
2958
2949
|
name = "tracing-subscriber"
|
|
2959
|
-
version = "0.3.
|
|
2950
|
+
version = "0.3.20"
|
|
2960
2951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
-
checksum = "
|
|
2952
|
+
checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
|
|
2962
2953
|
dependencies = [
|
|
2963
2954
|
"matchers",
|
|
2964
2955
|
"nu-ansi-term",
|
|
2965
2956
|
"once_cell",
|
|
2966
|
-
"regex",
|
|
2957
|
+
"regex-automata",
|
|
2967
2958
|
"sharded-slab",
|
|
2968
2959
|
"smallvec",
|
|
2969
2960
|
"thread_local",
|
|
@@ -2974,13 +2965,13 @@ dependencies = [
|
|
|
2974
2965
|
|
|
2975
2966
|
[[package]]
|
|
2976
2967
|
name = "tree-sitter"
|
|
2977
|
-
version = "0.25.
|
|
2968
|
+
version = "0.25.9"
|
|
2978
2969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
-
checksum = "
|
|
2970
|
+
checksum = "ccd2a058a86cfece0bf96f7cce1021efef9c8ed0e892ab74639173e5ed7a34fa"
|
|
2980
2971
|
dependencies = [
|
|
2981
2972
|
"cc",
|
|
2982
2973
|
"regex",
|
|
2983
|
-
"regex-syntax
|
|
2974
|
+
"regex-syntax",
|
|
2984
2975
|
"serde_json",
|
|
2985
2976
|
"streaming-iterator",
|
|
2986
2977
|
"tree-sitter-language",
|
|
@@ -3004,9 +2995,9 @@ checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8"
|
|
|
3004
2995
|
|
|
3005
2996
|
[[package]]
|
|
3006
2997
|
name = "tree-sitter-powershell"
|
|
3007
|
-
version = "0.25.
|
|
2998
|
+
version = "0.25.9"
|
|
3008
2999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
-
checksum = "
|
|
3000
|
+
checksum = "ae0e37101b110badaf99aa40460915a8797ceba15fc0ed22773280377a8dffb6"
|
|
3010
3001
|
dependencies = [
|
|
3011
3002
|
"cc",
|
|
3012
3003
|
"tree-sitter-language",
|
|
@@ -3359,22 +3350,6 @@ dependencies = [
|
|
|
3359
3350
|
"rustls-pki-types",
|
|
3360
3351
|
]
|
|
3361
3352
|
|
|
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
3353
|
[[package]]
|
|
3379
3354
|
name = "winapi-util"
|
|
3380
3355
|
version = "0.1.9"
|
|
@@ -3384,12 +3359,6 @@ dependencies = [
|
|
|
3384
3359
|
"windows-sys 0.59.0",
|
|
3385
3360
|
]
|
|
3386
3361
|
|
|
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
3362
|
[[package]]
|
|
3394
3363
|
name = "windows"
|
|
3395
3364
|
version = "0.61.1"
|
|
@@ -3695,7 +3664,7 @@ dependencies = [
|
|
|
3695
3664
|
"serde_json",
|
|
3696
3665
|
"serde_yaml",
|
|
3697
3666
|
"subfeature",
|
|
3698
|
-
"thiserror 2.0.
|
|
3667
|
+
"thiserror 2.0.16",
|
|
3699
3668
|
"yamlpath",
|
|
3700
3669
|
]
|
|
3701
3670
|
|
|
@@ -3706,7 +3675,7 @@ dependencies = [
|
|
|
3706
3675
|
"line-index",
|
|
3707
3676
|
"serde",
|
|
3708
3677
|
"serde_yaml",
|
|
3709
|
-
"thiserror 2.0.
|
|
3678
|
+
"thiserror 2.0.16",
|
|
3710
3679
|
"tree-sitter",
|
|
3711
3680
|
"tree-sitter-yaml",
|
|
3712
3681
|
]
|
|
@@ -3832,7 +3801,7 @@ dependencies = [
|
|
|
3832
3801
|
|
|
3833
3802
|
[[package]]
|
|
3834
3803
|
name = "zizmor"
|
|
3835
|
-
version = "1.
|
|
3804
|
+
version = "1.14.0"
|
|
3836
3805
|
dependencies = [
|
|
3837
3806
|
"annotate-snippets",
|
|
3838
3807
|
"anstream",
|
|
@@ -3870,7 +3839,7 @@ dependencies = [
|
|
|
3870
3839
|
"subfeature",
|
|
3871
3840
|
"tar",
|
|
3872
3841
|
"terminal-link",
|
|
3873
|
-
"thiserror 2.0.
|
|
3842
|
+
"thiserror 2.0.16",
|
|
3874
3843
|
"tokio",
|
|
3875
3844
|
"tower-lsp",
|
|
3876
3845
|
"tracing",
|
|
@@ -11,20 +11,20 @@ license = "MIT"
|
|
|
11
11
|
rust-version = "1.88.0"
|
|
12
12
|
|
|
13
13
|
[workspace.dependencies]
|
|
14
|
-
anyhow = "1.0.
|
|
15
|
-
github-actions-expressions = { path = "crates/github-actions-expressions", version = "0.0.
|
|
14
|
+
anyhow = "1.0.100"
|
|
15
|
+
github-actions-expressions = { path = "crates/github-actions-expressions", version = "0.0.10" }
|
|
16
16
|
github-actions-models = { path = "crates/github-actions-models", version = "0.32.0" }
|
|
17
17
|
itertools = "0.14.0"
|
|
18
|
-
pest = "2.8.
|
|
19
|
-
pest_derive = "2.8.
|
|
18
|
+
pest = "2.8.2"
|
|
19
|
+
pest_derive = "2.8.2"
|
|
20
20
|
pretty_assertions = "1.4.1"
|
|
21
|
-
annotate-snippets = "0.
|
|
21
|
+
annotate-snippets = "0.12.4"
|
|
22
22
|
anstream = "0.6.20"
|
|
23
23
|
assert_cmd = "2.0.17"
|
|
24
|
-
camino = "1.
|
|
25
|
-
clap = "4.5.
|
|
26
|
-
clap-verbosity-flag = { version = "3.0.
|
|
27
|
-
clap_complete = "4.5.
|
|
24
|
+
camino = "1.2.0"
|
|
25
|
+
clap = "4.5.48"
|
|
26
|
+
clap-verbosity-flag = { version = "3.0.4", default-features = false }
|
|
27
|
+
clap_complete = "4.5.58"
|
|
28
28
|
clap_complete_nushell = "4.5.8"
|
|
29
29
|
csv = "1.3.1"
|
|
30
30
|
etcetera = "0.10.0"
|
|
@@ -33,33 +33,33 @@ fst = "0.4.7"
|
|
|
33
33
|
http-cache-reqwest = "0.16"
|
|
34
34
|
human-panic = "2.0.3"
|
|
35
35
|
ignore = "0.4.23"
|
|
36
|
-
indexmap = { version = "2.
|
|
36
|
+
indexmap = { version = "2.11.4", features = ["serde"] }
|
|
37
37
|
indicatif = "0.18"
|
|
38
|
-
insta = "1.43.
|
|
38
|
+
insta = "1.43.2"
|
|
39
39
|
jsonschema = "0.30.0"
|
|
40
40
|
line-index = "0.1.2"
|
|
41
41
|
memchr = "2.7.5"
|
|
42
42
|
owo-colors = "4.2.2"
|
|
43
|
-
regex = "1.11.
|
|
44
|
-
reqwest = { version = "0.12.
|
|
43
|
+
regex = "1.11.2"
|
|
44
|
+
reqwest = { version = "0.12.23", default-features = false }
|
|
45
45
|
reqwest-middleware = "0.4.2"
|
|
46
|
-
serde = { version = "1.0.
|
|
46
|
+
serde = { version = "1.0.226", features = ["derive"] }
|
|
47
47
|
serde-sarif = "0.8.0"
|
|
48
|
-
serde_json = "1.0.
|
|
48
|
+
serde_json = "1.0.145"
|
|
49
49
|
serde_json_path = "0.7.2"
|
|
50
50
|
serde_yaml = "0.9.34"
|
|
51
51
|
subfeature = { path = "crates/subfeature", version = "0.0.3" }
|
|
52
52
|
tar = "0.4.44"
|
|
53
53
|
terminal-link = "0.1.0"
|
|
54
|
-
thiserror = "2.0.
|
|
54
|
+
thiserror = "2.0.16"
|
|
55
55
|
tokio = { version = "1.47.1", features = ["rt-multi-thread", "io-std"] }
|
|
56
56
|
tower-lsp = { version = "0.20.0" }
|
|
57
57
|
tracing = "0.1.41"
|
|
58
|
-
tracing-indicatif = "0.3.
|
|
59
|
-
tracing-subscriber = "0.3.
|
|
60
|
-
tree-sitter = "0.25.
|
|
58
|
+
tracing-indicatif = "0.3.13"
|
|
59
|
+
tracing-subscriber = "0.3.20"
|
|
60
|
+
tree-sitter = "0.25.9"
|
|
61
61
|
tree-sitter-bash = "0.23.3"
|
|
62
|
-
tree-sitter-powershell = "0.25.
|
|
62
|
+
tree-sitter-powershell = "0.25.9"
|
|
63
63
|
yamlpath = { path = "crates/yamlpath", version = "0.25.0" }
|
|
64
64
|
yamlpatch = { path = "crates/yamlpatch", version = "0.3.0" }
|
|
65
65
|
tree-sitter-yaml = "0.7.1"
|