mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* improve struct and field comments and incorporate into json schema Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * address review feedback Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
11 lines
405 B
Go
11 lines
405 B
Go
package pkg
|
|
|
|
// GitHubActionsUseStatement represents a single 'uses' statement in a GitHub Actions workflow file referencing an action or reusable workflow.
|
|
type GitHubActionsUseStatement struct {
|
|
// Value is the action reference (e.g. "actions/checkout@v3")
|
|
Value string `json:"value"`
|
|
|
|
// Comment is the inline comment associated with this uses statement
|
|
Comment string `json:"comment,omitempty"`
|
|
}
|