@@ -55,6 +55,8 @@ You can optionally pass parameters to the action as follows:
5555 workspace-copy : false
5656 # Use native dev drive support when available. Defaults to true.
5757 native-dev-drive : true
58+ # Used to mark the native dev drive as trusted. Defaults to false.
59+ trusted-dev-drive : false
5860 # Custom mappings of output environment variables. Defaults to no mapping.
5961 env-mapping : |
6062 MY_PROJECT_BIN,{{ DEV_DRIVE }}/path/to/bin
@@ -161,6 +163,15 @@ This action will automatically use the built-in [Windows Dev Drive](https://lear
161163on your behalf when it's available on your Windows runner and `ReFS` is used.
162164You can use this option to turn this automatic usage off.
163165
166+ # ## *trusted-dev-drive*
167+
168+ By default, this option is set to `false`.
169+
170+ This action will not mark the dev drive as trusted and will leave it to default settings.
171+ When an additional degree of performance is desired, marking a native dev drive as trusted may help.
172+
173+ Consult [official documentation](https://learn.microsoft.com/en-us/windows/dev-drive/#understanding-security-risks-and-trust-in-relation-to-dev-drive)
174+ before considering enabling this functionality.
164175
165176# ## *env-mapping*
166177
@@ -214,7 +225,7 @@ typical values of the environment variables and the rest of the input is then ap
214225# ...
215226` ` `
216227
217- # # Environment Variables
228+ # # Exported Environment Variables
218229
219230These environment variables are meant to be used along `working-directory` to make sure
220231your workflow commands are executing relative to your dev drive.
0 commit comments