File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,21 +88,21 @@ runs:
8888
8989 - name : " Check if User or Organization is set"
9090 if : inputs.organization == '' && inputs.user == ''
91- uses : actions/github-script@v3
91+ uses : actions/github-script@v6
9292 with :
9393 script : |
9494 core.setFailed('either user or organization is not specified.')
9595
9696 - name : " Check if User and Organization are set"
9797 if : inputs.organization != '' && inputs.user != ''
98- uses : actions/github-script@v3
98+ uses : actions/github-script@v6
9999 with :
100100 script : |
101101 core.setFailed('user and organization field is set. Only one is supported.')
102102
103103 - name : " Check if operation_mode is set and custom_field_values is not null"
104104 if : inputs.operation_mode == 'custom_field' && inputs.custom_field_values == ''
105- uses : actions/github-script@v3
105+ uses : actions/github-script@v6
106106 with :
107107 script : |
108108 core.setFailed('operation mode is set to custom_field but custom_field_values is not set.')
You can’t perform that action at this time.
0 commit comments