getEmbeddedContainerPin returns the pinned container image for a given image reference.
(image string)
| 164 | |
| 165 | // getEmbeddedContainerPin returns the pinned container image for a given image reference. |
| 166 | func getEmbeddedContainerPin(image string) (actionpins.ContainerPin, bool) { |
| 167 | return actionpins.GetContainerPin(image) |
| 168 | } |
| 169 | |
| 170 | // lookupContainerPin returns the ContainerPin for the given image, checking cache first |
| 171 | // then falling back to embedded pins. Returns false if the image is not pinned. |
no test coverage detected