You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`db-server-name`| true | N/A | The server where the dependency files will be run. |
21
-
|`db-name`| true | N/A | The name of the database where the dependency files will run. |
22
-
|`dependency-list`| true | N/A | A json string containing a list of objects with the name of the dependency package, the version,the url where the package is stored, and optionally the auth token needed to download the package. |
23
-
|`use-integrated-security`| true | false | Use domain integrated security. If false, a db-username and db-password should be specified. If true, those parameters will be ignored if specified. |
24
-
|`db-username`| false | N/A | The username to use to login to the database. This is required if use-integrated-security is false, otherwise it's optional and will be ignored. |
25
-
|`db-password`| false | N/A | The password for the user logging in to the database. This is required if use-integrated-security is false, otherwise it's optional and will be ignored. |
18
+
| Parameter | Is Required | Default | Description |
|`db-server-name`| true | N/A | The server where the dependency files will be run. |
21
+
|`db-name`| true | N/A | The name of the database where the dependency files will run. |
22
+
|`dependency-list`| true | N/A | A json string containing a list of objects with the name of the dependency package, the version,the url where the package is stored, and optionally the auth token needed to download the package. |
23
+
|`use-integrated-security`| true | false | Use domain integrated security. If false, a db-username and db-password should be specified. If true, those parameters will be ignored if specified. |
24
+
|`db-username`| false | N/A | The username to use to login to the database. This is required if use-integrated-security is false, otherwise it's optional and will be ignored. |
25
+
|`db-password`| false | N/A | The password for the user logging in to the database. This is required if use-integrated-security is false, otherwise it's optional and will be ignored. |
26
+
|`trust-server-certificate`| false | false | A boolean that controls whether or not to validate the SQL Server TLS certificate. |
26
27
27
28
The `dependency-list` should be an array of objects with the following properties:
Copy file name to clipboardExpand all lines: action.yml
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,10 @@ inputs:
22
22
db-password:
23
23
description: The password for the user logging in to the database. This is required if use-integrated-security is false, otherwise it's optional and will be ignored.
24
24
required: false
25
+
trust-server-certificate:
26
+
description: A boolean that controls whether or not to validate the SQL Server TLS certificate.
0 commit comments