@@ -105,7 +105,7 @@ jobs:
105
105
# -----------------------------------------------------------------------------------------------------------
106
106
- name : Get changed files
107
107
id : changed-files
108
- uses : step-security/changed-files@v46
108
+ uses : step-security/changed-files@v45
109
109
# To compare changes between the current commit and the last pushed remote commit set `since_last_remote_commit: true`. e.g
110
110
# with:
111
111
# since_last_remote_commit: true
@@ -123,7 +123,7 @@ jobs:
123
123
# -----------------------------------------------------------------------------------------------------------
124
124
- name : Get all changed markdown files
125
125
id : changed-markdown-files
126
- uses : step-security/changed-files@v46
126
+ uses : step-security/changed-files@v45
127
127
with :
128
128
# Avoid using single or double quotes for multiline patterns
129
129
files : |
@@ -144,7 +144,7 @@ jobs:
144
144
# -----------------------------------------------------------------------------------------------------------
145
145
- name : Get all test, doc and src files that have changed
146
146
id : changed-files-yaml
147
- uses : step-security/changed-files@v46
147
+ uses : step-security/changed-files@v45
148
148
with :
149
149
files_yaml : |
150
150
doc:
@@ -179,7 +179,7 @@ jobs:
179
179
# -----------------------------------------------------------------------------------------------------------
180
180
- name : Get changed files in the docs folder
181
181
id : changed-files-specific
182
- uses : step-security/changed-files@v46
182
+ uses : step-security/changed-files@v45
183
183
with :
184
184
files : docs/*.{js,html} # Alternatively using: `docs/**`
185
185
files_ignore : docs/static.js
@@ -221,7 +221,7 @@ jobs:
221
221
steps :
222
222
- name : Get changed files
223
223
id : changed-files
224
- uses : step-security/changed-files@v46
224
+ uses : step-security/changed-files@v45
225
225
226
226
- name : List all changed files
227
227
env :
@@ -264,7 +264,7 @@ jobs:
264
264
265
265
- name : Get changed files
266
266
id : changed-files
267
- uses : step-security/changed-files@v46
267
+ uses : step-security/changed-files@v45
268
268
# NOTE: `since_last_remote_commit: true` is implied by default and falls back to the previous local commit.
269
269
270
270
- name : List all changed files
@@ -303,7 +303,7 @@ To access more examples, navigate to the [Examples](#examples-) section.
303
303
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section -->
304
304
305
305
``` yaml
306
- - uses : step-security/changed-files@v46
306
+ - uses : step-security/changed-files@v45
307
307
id : changed-files
308
308
with :
309
309
# Github API URL.
@@ -788,7 +788,7 @@ The format of the version string is as follows:
788
788
...
789
789
- name : Get changed files
790
790
id : changed-files
791
- uses : step-security/changed-files@v46
791
+ uses : step-security/changed-files@v45
792
792
...
793
793
```
794
794
@@ -801,7 +801,7 @@ The format of the version string is as follows:
801
801
...
802
802
- name : Get changed files
803
803
id : changed-files
804
- uses : step-security/changed-files@v46
804
+ uses : step-security/changed-files@v45
805
805
with :
806
806
safe_output : false # set to false because we are using an environment variable to store the output and avoid command injection.
807
807
@@ -824,7 +824,7 @@ The format of the version string is as follows:
824
824
...
825
825
- name : Get all changed files and use a comma separator in the output
826
826
id : changed-files
827
- uses : step-security/changed-files@v46
827
+ uses : step-security/changed-files@v45
828
828
with :
829
829
separator : " ,"
830
830
...
@@ -841,7 +841,7 @@ See [inputs](#inputs) for more information.
841
841
...
842
842
- name : Get changed files
843
843
id : changed-files
844
- uses : step-security/changed-files@v46
844
+ uses : step-security/changed-files@v45
845
845
846
846
- name : List all added files
847
847
env :
@@ -864,7 +864,7 @@ See [outputs](#outputs) for a list of all available outputs.
864
864
...
865
865
- name : Get changed files
866
866
id : changed-files
867
- uses : step-security/changed-files@v46
867
+ uses : step-security/changed-files@v45
868
868
869
869
- name : Run a step if my-file.txt was modified
870
870
if : contains(steps.changed-files.outputs.modified_files, 'my-file.txt')
@@ -885,7 +885,7 @@ See [outputs](#outputs) for a list of all available outputs.
885
885
886
886
- name : Get changed files and write the outputs to a Txt file
887
887
id : changed-files-write-output-files-txt
888
- uses : step-security/changed-files@v46
888
+ uses : step-security/changed-files@v45
889
889
with :
890
890
write_output_files : true
891
891
@@ -904,7 +904,7 @@ See [outputs](#outputs) for a list of all available outputs.
904
904
...
905
905
- name : Get changed files and write the outputs to a JSON file
906
906
id : changed-files-write-output-files-json
907
- uses : step-security/changed-files@v46
907
+ uses : step-security/changed-files@v45
908
908
with :
909
909
json : true
910
910
write_output_files : true
@@ -924,7 +924,7 @@ See [outputs](#outputs) for a list of all available outputs.
924
924
...
925
925
- name : Get changed files
926
926
id : changed-files
927
- uses : step-security/changed-files@v46
927
+ uses : step-security/changed-files@v45
928
928
with :
929
929
files : |
930
930
my-file.txt
@@ -947,7 +947,7 @@ See [inputs](#inputs) for more information.
947
947
...
948
948
- name : Get changed files
949
949
id : changed-files-specific
950
- uses : step-security/changed-files@v46
950
+ uses : step-security/changed-files@v45
951
951
with :
952
952
files : |
953
953
my-file.txt
@@ -998,7 +998,7 @@ See [outputs](#outputs) for a list of all available outputs.
998
998
...
999
999
- name : Get changed files using a source file or list of file(s) to populate to files input.
1000
1000
id : changed-files-specific-source-file
1001
- uses : step-security/changed-files@v46
1001
+ uses : step-security/changed-files@v45
1002
1002
with :
1003
1003
files_from_source_file : test/changed-files-list.txt
1004
1004
...
@@ -1015,7 +1015,7 @@ See [inputs](#inputs) for more information.
1015
1015
...
1016
1016
- name : Get changed files using a source file or list of file(s) to populate to files input and optionally specify more files.
1017
1017
id : changed-files-specific-source-file-and-specify-files
1018
- uses : step-security/changed-files@v46
1018
+ uses : step-security/changed-files@v45
1019
1019
with :
1020
1020
files_from_source_file : |
1021
1021
test/changed-files-list.txt
@@ -1036,7 +1036,7 @@ See [inputs](#inputs) for more information.
1036
1036
...
1037
1037
- name : Get changed files using a different SHA
1038
1038
id : changed-files
1039
- uses : step-security/changed-files@v46
1039
+ uses : step-security/changed-files@v45
1040
1040
with :
1041
1041
sha : ${{ github.event.pull_request.head.sha }}
1042
1042
...
@@ -1053,7 +1053,7 @@ See [inputs](#inputs) for more information.
1053
1053
...
1054
1054
- name : Get changed files using a different base SHA
1055
1055
id : changed-files
1056
- uses : step-security/changed-files@v46
1056
+ uses : step-security/changed-files@v45
1057
1057
with :
1058
1058
base_sha : ${{ github.event.pull_request.base.sha }}
1059
1059
...
@@ -1085,7 +1085,7 @@ jobs:
1085
1085
1086
1086
- name : Get changed files
1087
1087
id : changed-files
1088
- uses : step-security/changed-files@v46
1088
+ uses : step-security/changed-files@v45
1089
1089
1090
1090
- name : List changed files
1091
1091
env :
@@ -1095,7 +1095,7 @@ jobs:
1095
1095
1096
1096
- name : Get changed files in the .github folder
1097
1097
id : changed-files-specific
1098
- uses : step-security/changed-files@v46
1098
+ uses : step-security/changed-files@v45
1099
1099
with :
1100
1100
files : .github/**
1101
1101
@@ -1126,7 +1126,7 @@ See [inputs](#inputs) for more information.
1126
1126
1127
1127
- name : Run changed-files with defaults in dir1
1128
1128
id : changed-files-for-dir1
1129
- uses : step-security/changed-files@v46
1129
+ uses : step-security/changed-files@v45
1130
1130
with :
1131
1131
path : dir1
1132
1132
@@ -1151,13 +1151,13 @@ See [inputs](#inputs) for more information.
1151
1151
...
1152
1152
- name : Run changed-files with quotepath disabled
1153
1153
id : changed-files-quotepath
1154
- uses : step-security/changed-files@v46
1154
+ uses : step-security/changed-files@v45
1155
1155
with :
1156
1156
quotepath : " false"
1157
1157
1158
1158
- name : Run changed-files with quotepath disabled for a specified list of file(s)
1159
1159
id : changed-files-quotepath-specific
1160
- uses : step-security/changed-files@v46
1160
+ uses : step-security/changed-files@v45
1161
1161
with :
1162
1162
files : test/test-è.txt
1163
1163
quotepath : " false"
@@ -1190,7 +1190,7 @@ See [inputs](#inputs) for more information.
1190
1190
1191
1191
- name : Run changed-files with the commit of the last successful test workflow run
1192
1192
id : changed-files-base-sha-push
1193
- uses : step-security/changed-files@v46
1193
+ uses : step-security/changed-files@v45
1194
1194
with :
1195
1195
base_sha : ${{ steps.last_successful_commit_push.outputs.base }}
1196
1196
...
@@ -1217,7 +1217,7 @@ See [inputs](#inputs) for more information.
1217
1217
1218
1218
- name : Run changed-files with the commit of the last successful test workflow run on the main branch
1219
1219
id : changed-files-base-sha-pull-request
1220
- uses : step-security/changed-files@v46
1220
+ uses : step-security/changed-files@v45
1221
1221
with :
1222
1222
base_sha : ${{ steps.last_successful_commit_pull_request.outputs.base }}
1223
1223
...
@@ -1243,7 +1243,7 @@ See [inputs](#inputs) for more information.
1243
1243
...
1244
1244
- name : Run changed-files with dir_names
1245
1245
id : changed-files-dir-names
1246
- uses : step-security/changed-files@v46
1246
+ uses : step-security/changed-files@v45
1247
1247
with :
1248
1248
dir_names : " true"
1249
1249
...
@@ -1260,7 +1260,7 @@ See [inputs](#inputs) for more information.
1260
1260
...
1261
1261
- name : Run changed-files with JSON output
1262
1262
id : changed-files-json
1263
- uses : step-security/changed-files@v46
1263
+ uses : step-security/changed-files@v45
1264
1264
with :
1265
1265
json : " true"
1266
1266
...
@@ -1277,13 +1277,13 @@ See [inputs](#inputs) for more information.
1277
1277
...
1278
1278
- name : Get changed-files since 2022-08-19
1279
1279
id : changed-files-since
1280
- uses : step-security/changed-files@v46
1280
+ uses : step-security/changed-files@v45
1281
1281
with :
1282
1282
since : " 2022-08-19"
1283
1283
1284
1284
- name : Get changed-files until 2022-08-20
1285
1285
id : changed-files-until
1286
- uses : step-security/changed-files@v46
1286
+ uses : step-security/changed-files@v45
1287
1287
with :
1288
1288
until : " 2022-08-20"
1289
1289
...
0 commit comments