@@ -136,7 +136,7 @@ jobs:
136136 # -----------------------------------------------------------------------------------------------------------
137137 - name : Get changed files
138138 id : changed-files
139- uses : tj-actions/changed-files@v46
139+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
140140 # To compare changes between the current commit and the last pushed remote commit set `since_last_remote_commit: true`. e.g
141141 # with:
142142 # since_last_remote_commit: true
@@ -154,7 +154,7 @@ jobs:
154154 # -----------------------------------------------------------------------------------------------------------
155155 - name : Get all changed markdown files
156156 id : changed-markdown-files
157- uses : tj-actions/changed-files@v46
157+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
158158 with :
159159 # Avoid using single or double quotes for multiline patterns
160160 files : |
@@ -175,7 +175,7 @@ jobs:
175175 # -----------------------------------------------------------------------------------------------------------
176176 - name : Get all test, doc and src files that have changed
177177 id : changed-files-yaml
178- uses : tj-actions/changed-files@v46
178+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
179179 with :
180180 files_yaml : |
181181 doc:
@@ -210,7 +210,7 @@ jobs:
210210 # -----------------------------------------------------------------------------------------------------------
211211 - name : Get changed files in the docs folder
212212 id : changed-files-specific
213- uses : tj-actions/changed-files@v46
213+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
214214 with :
215215 files : docs/*.{js,html} # Alternatively using: `docs/**`
216216 files_ignore : docs/static.js
@@ -252,7 +252,7 @@ jobs:
252252 steps :
253253 - name : Get changed files
254254 id : changed-files
255- uses : tj-actions/changed-files@v46
255+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
256256
257257 - name : List all changed files
258258 env :
@@ -295,7 +295,7 @@ jobs:
295295
296296 - name : Get changed files
297297 id : changed-files
298- uses : tj-actions/changed-files@v46
298+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
299299 # NOTE: `since_last_remote_commit: true` is implied by default and falls back to the previous local commit.
300300
301301 - name : List all changed files
@@ -827,7 +827,7 @@ The format of the version string is as follows:
827827...
828828 - name : Get changed files
829829 id : changed-files
830- uses : tj-actions/changed-files@v46
830+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
831831...
832832```
833833
@@ -840,7 +840,7 @@ The format of the version string is as follows:
840840...
841841 - name : Get changed files
842842 id : changed-files
843- uses : tj-actions/changed-files@v46
843+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
844844 with :
845845 safe_output : false # set to false because we are using an environment variable to store the output and avoid command injection.
846846
@@ -863,7 +863,7 @@ The format of the version string is as follows:
863863...
864864 - name : Get all changed files and use a comma separator in the output
865865 id : changed-files
866- uses : tj-actions/changed-files@v46
866+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
867867 with :
868868 separator : " ,"
869869...
@@ -880,7 +880,7 @@ See [inputs](#inputs) for more information.
880880...
881881 - name : Get changed files
882882 id : changed-files
883- uses : tj-actions/changed-files@v46
883+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
884884
885885 - name : List all added files
886886 env :
@@ -903,7 +903,7 @@ See [outputs](#outputs) for a list of all available outputs.
903903...
904904 - name : Get changed files
905905 id : changed-files
906- uses : tj-actions/changed-files@v46
906+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
907907
908908 - name : Run a step if my-file.txt was modified
909909 if : contains(steps.changed-files.outputs.modified_files, 'my-file.txt')
@@ -924,7 +924,7 @@ See [outputs](#outputs) for a list of all available outputs.
924924
925925 - name : Get changed files and write the outputs to a Txt file
926926 id : changed-files-write-output-files-txt
927- uses : tj-actions/changed-files@v46
927+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
928928 with :
929929 write_output_files : true
930930
@@ -943,7 +943,7 @@ See [outputs](#outputs) for a list of all available outputs.
943943...
944944 - name : Get changed files and write the outputs to a JSON file
945945 id : changed-files-write-output-files-json
946- uses : tj-actions/changed-files@v46
946+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
947947 with :
948948 json : true
949949 write_output_files : true
@@ -963,7 +963,7 @@ See [outputs](#outputs) for a list of all available outputs.
963963...
964964 - name : Get changed files
965965 id : changed-files
966- uses : tj-actions/changed-files@v46
966+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
967967 with :
968968 files : |
969969 my-file.txt
@@ -986,7 +986,7 @@ See [inputs](#inputs) for more information.
986986...
987987 - name : Get changed files
988988 id : changed-files-specific
989- uses : tj-actions/changed-files@v46
989+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
990990 with :
991991 files : |
992992 my-file.txt
@@ -1037,7 +1037,7 @@ See [outputs](#outputs) for a list of all available outputs.
10371037...
10381038 - name : Get changed files using a source file or list of file(s) to populate to files input.
10391039 id : changed-files-specific-source-file
1040- uses : tj-actions/changed-files@v46
1040+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
10411041 with :
10421042 files_from_source_file : test/changed-files-list.txt
10431043...
@@ -1054,7 +1054,7 @@ See [inputs](#inputs) for more information.
10541054...
10551055 - name : Get changed files using a source file or list of file(s) to populate to files input and optionally specify more files.
10561056 id : changed-files-specific-source-file-and-specify-files
1057- uses : tj-actions/changed-files@v46
1057+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
10581058 with :
10591059 files_from_source_file : |
10601060 test/changed-files-list.txt
@@ -1075,7 +1075,7 @@ See [inputs](#inputs) for more information.
10751075...
10761076 - name : Get changed files using a different SHA
10771077 id : changed-files
1078- uses : tj-actions/changed-files@v46
1078+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
10791079 with :
10801080 sha : ${{ github.event.pull_request.head.sha }}
10811081...
@@ -1092,7 +1092,7 @@ See [inputs](#inputs) for more information.
10921092...
10931093 - name : Get changed files using a different base SHA
10941094 id : changed-files
1095- uses : tj-actions/changed-files@v46
1095+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
10961096 with :
10971097 base_sha : ${{ github.event.pull_request.base.sha }}
10981098...
@@ -1124,7 +1124,7 @@ jobs:
11241124
11251125 - name : Get changed files
11261126 id : changed-files
1127- uses : tj-actions/changed-files@v46
1127+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
11281128
11291129 - name : List changed files
11301130 env :
@@ -1134,7 +1134,7 @@ jobs:
11341134
11351135 - name : Get changed files in the .github folder
11361136 id : changed-files-specific
1137- uses : tj-actions/changed-files@v46
1137+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
11381138 with :
11391139 files : .github/**
11401140
@@ -1165,7 +1165,7 @@ See [inputs](#inputs) for more information.
11651165
11661166 - name : Run changed-files with defaults in dir1
11671167 id : changed-files-for-dir1
1168- uses : tj-actions/changed-files@v46
1168+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
11691169 with :
11701170 path : dir1
11711171
@@ -1190,13 +1190,13 @@ See [inputs](#inputs) for more information.
11901190...
11911191 - name : Run changed-files with quotepath disabled
11921192 id : changed-files-quotepath
1193- uses : tj-actions/changed-files@v46
1193+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
11941194 with :
11951195 quotepath : " false"
11961196
11971197 - name : Run changed-files with quotepath disabled for a specified list of file(s)
11981198 id : changed-files-quotepath-specific
1199- uses : tj-actions/changed-files@v46
1199+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
12001200 with :
12011201 files : test/test-è.txt
12021202 quotepath : " false"
@@ -1229,7 +1229,7 @@ See [inputs](#inputs) for more information.
12291229
12301230 - name : Run changed-files with the commit of the last successful test workflow run
12311231 id : changed-files-base-sha-push
1232- uses : tj-actions/changed-files@v46
1232+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
12331233 with :
12341234 base_sha : ${{ steps.last_successful_commit_push.outputs.base }}
12351235...
@@ -1256,7 +1256,7 @@ See [inputs](#inputs) for more information.
12561256
12571257 - name : Run changed-files with the commit of the last successful test workflow run on the main branch
12581258 id : changed-files-base-sha-pull-request
1259- uses : tj-actions/changed-files@v46
1259+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
12601260 with :
12611261 base_sha : ${{ steps.last_successful_commit_pull_request.outputs.base }}
12621262...
@@ -1282,7 +1282,7 @@ See [inputs](#inputs) for more information.
12821282...
12831283 - name : Run changed-files with dir_names
12841284 id : changed-files-dir-names
1285- uses : tj-actions/changed-files@v46
1285+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
12861286 with :
12871287 dir_names : " true"
12881288...
@@ -1299,7 +1299,7 @@ See [inputs](#inputs) for more information.
12991299...
13001300 - name : Run changed-files with JSON output
13011301 id : changed-files-json
1302- uses : tj-actions/changed-files@v46
1302+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
13031303 with :
13041304 json : " true"
13051305...
@@ -1316,13 +1316,13 @@ See [inputs](#inputs) for more information.
13161316...
13171317 - name : Get changed-files since 2022-08-19
13181318 id : changed-files-since
1319- uses : tj-actions/changed-files@v46
1319+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
13201320 with :
13211321 since : " 2022-08-19"
13221322
13231323 - name : Get changed-files until 2022-08-20
13241324 id : changed-files-until
1325- uses : tj-actions/changed-files@v46
1325+ uses : tj-actions/changed-files@26a38635fc1173cc5820336ce97be6188d0de9f5 # v46
13261326 with :
13271327 until : " 2022-08-20"
13281328...
0 commit comments