checkout-files
checkout-files copied to clipboard
Does not restore mode bits of checked out files
I want to check out a json file and a script that processes it.
The mode of the script is 775 (rwxrwxr-x
).
Using actions/checkout
this is of course also restored.
Not with the action. The checked out script file is non-executable. Of course I can set it with chmod u+x
and use it in the job, but maybe this action can restore the mode bits?
Thank you for this action, even as it is it saves me a lot of CI time :+1: