Why does this GitHub Action pull a Docker image before any actual defined steps in the workflow?
Its doing a pre-step of Build karancode/kustomize-github-action@master before my defined step of Checkout in my workflow.
To Reproduce
Run the workflow as usual and you will see the execution of the pre-step running before any actual steps.
Expected behavior
Only pull the Docker image in the exact step that I defined in the workflow. I am trying to authenticate with Docker Hub so the pull rate limit can be increased but the pre-step mentioned above is running first so its not logging in first.
Notice in the below screenshot that there are steps of building a kustomize Docker image BEFORE the Checkout step runs and then following the Login to Docker Hub step, etc..
Describe the bug
Why does this GitHub Action pull a Docker image before any actual defined steps in the workflow?
Its doing a pre-step of
Build karancode/kustomize-github-action@master
before my defined step ofCheckout
in my workflow.To Reproduce
Run the workflow as usual and you will see the execution of the pre-step running before any actual steps.
Expected behavior
Only pull the Docker image in the exact step that I defined in the workflow. I am trying to authenticate with Docker Hub so the pull rate limit can be increased but the pre-step mentioned above is running first so its not logging in first.
Screenshots/Actions log
Snippet of the workflow im running:
Notice in the below screenshot that there are steps of building a kustomize Docker image BEFORE the
Checkout
step runs and then following theLogin to Docker Hub
step, etc..Running on:
OS: ubuntu-latest
Additional context