File tree 1 file changed +2
-9
lines changed 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -233,13 +233,10 @@ jobs:
233
233
- name : Get changed files
234
234
id : changed-files
235
235
uses : tj-actions/changed-files@v40
236
- with :
237
- safe_output : false # true by default, set to false because we are using an environment variable to store the output and avoid command injection.
238
236
239
237
- name : List all changed files
240
238
env :
241
- ALL_CHANGED_FILES : |-
242
- ${{ steps.changed-files.outputs.all_changed_files }}
239
+ ALL_CHANGED_FILES : ${{ steps.changed-files.outputs.all_changed_files }}
243
240
run : |
244
241
for file in "$ALL_CHANGED_FILES"; do
245
242
echo "$file was changed"
@@ -279,15 +276,11 @@ jobs:
279
276
- name : Get changed files
280
277
id : changed-files
281
278
uses : tj-actions/changed-files@v40
282
- with :
283
- safe_output : false # true by default, set to false because we are using an environment variable to store the output and avoid command injection.
284
-
285
279
# NOTE: `since_last_remote_commit: true` is implied by default and falls back to the previous local commit.
286
280
287
281
- name : List all changed files
288
282
env :
289
- ALL_CHANGED_FILES : |-
290
- ${{ steps.changed-files.outputs.all_changed_files }}
283
+ ALL_CHANGED_FILES : ${{ steps.changed-files.outputs.all_changed_files }}
291
284
run : |
292
285
for file in "$ALL_CHANGED_FILES"; do
293
286
echo "$file was changed"
You can’t perform that action at this time.
0 commit comments