File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ Verify that certain files or directories did or did not change during the workfl
60
60
uses : tj-actions/verify-changed-files@v16
61
61
id : verify-changed-files
62
62
with :
63
- safe_output : false # true by default, set to false because we are using an environment variable to store the output and avoid command injection.
64
63
files : |
65
64
*.txt
66
65
test_directory
@@ -86,7 +85,6 @@ Verify that certain files or directories did or did not change during the workfl
86
85
uses : tj-actions/verify-changed-files@v16
87
86
id : verify-changed-files
88
87
with :
89
- safe_output : false
90
88
files : |
91
89
new.txt
92
90
test_directory
@@ -104,13 +102,10 @@ Verify that certain files or directories did or did not change during the workfl
104
102
- name : Verify Changed files
105
103
uses : tj-actions/verify-changed-files@v16
106
104
id : verify-changed-files
107
- with :
108
- safe_output : false
109
105
110
106
- name : List all changed files tracked and untracked files
111
107
env :
112
- FILES_CHANGED : |-
113
- ${{ steps.verify-changed-files.outputs.changed_files }}
108
+ FILES_CHANGED : ${{ steps.verify-changed-files.outputs.changed_files }}
114
109
run : |
115
110
echo "Changed files: $FILES_CHANGED"
116
111
` ` `
You can’t perform that action at this time.
0 commit comments