-------------------------------------------------------------------------- Package-private helpers used throughout pkg/workflow -------------------------------------------------------------------------- formatActionReference formats an action reference with repo, SHA, and version.
(repo, sha, version string)
| 37 | |
| 38 | // formatActionReference formats an action reference with repo, SHA, and version. |
| 39 | func formatActionReference(repo, sha, version string) string { |
| 40 | return actionpins.FormatPinnedActionReference(repo, sha, version) |
| 41 | } |
| 42 | |
| 43 | // formatActionCacheKey generates a cache key for action resolution. |
| 44 | func formatActionCacheKey(repo, version string) string { |