In my GitHub action, I want to run things inside a specific container. I know I can do this with the container: option. However, this will pull a fresh image every time I run and that takes a lot of time. Is there a way for me to cache this image that is used by container: so my action runs faster?
Thanks!