Annotate resolve_transport_paths with SEC-005 exemption to avoid false cross-repo validation failure#37560
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add allowlist check to resolve_transport_paths.cjs for SEC-005 conformance
Annotate Jun 7, 2026
resolve_transport_paths with SEC-005 exemption to avoid false cross-repo validation failure
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a SEC-005 exemption annotation to resolve_transport_paths.cjs so safe-outputs conformance tooling doesn’t misclassify this local path-derivation helper as a cross-repo operation requiring an allowlist check.
Changes:
- Annotated
actions/setup/js/resolve_transport_paths.cjswith@safe-outputs-exempt SEC-005and a rationale indicating it performs only local path derivation/existence checks. - No runtime behavior or path-derivation logic changes.
Show a summary per file
| File | Description |
|---|---|
| actions/setup/js/resolve_transport_paths.cjs | Adds a SEC-005 exemption annotation to prevent false-positive cross-repo validation findings for a local-only utility. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
SEC-005 flagged
actions/setup/js/resolve_transport_paths.cjsfor missing target-repo allowlist checks due to heuristic matching ondefaultTargetRepo. This utility does not perform cross-repository API writes; it only derives local transport file paths and checks existence.Conformance alignment
resolve_transport_paths.cjsto mark the module as a pure local path-derivation utility.Behavioral impact
// @safe-outputs-exempt SEC-005: pure local path-derivation utility; no cross-repo API calls. Target-repo allowlist enforcement is handled upstream in API-calling handlers.