File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ inputs:
5151 not supplied by the user. When running this action on github.com, the default value is sufficient. When running on
5252 GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
5353 default : ${{ github.server_url == 'https://github.com' && github.token || '' }}
54+ disable-caching :
55+ description : " Disable the cache actions in this workflow."
56+ required : false
57+ default : ' false'
5458outputs :
5559 status :
5660 description : Apply Status. Either 'succeeded' or 'failed'
@@ -384,7 +388,7 @@ runs:
384388 - name : Cache .terraform
385389 id : cache
386390 uses : actions/cache@v4
387- if : env.ACTIONS_ENABLED == 'true'
391+ if : env.ACTIONS_ENABLED == 'true' && inputs.disable-caching != 'true'
388392 with :
389393 path : |
390394 ${{ steps.vars.outputs.component_path }}/.terraform
You can’t perform that action at this time.
0 commit comments