doc-detective-common 3.1.0 → 3.1.1-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/config_v3.schema.json +53 -32
- package/dist/schemas/report_v3.schema.json +30 -41
- package/dist/schemas/resolvedTests_v3.schema.json +83 -73
- package/dist/schemas/spec_v3.schema.json +30 -41
- package/dist/schemas/step_v3.schema.json +15 -15
- package/dist/schemas/test_v3.schema.json +30 -41
- package/package.json +2 -2
- package/src/schemas/build/checkLink_v2.schema.json +81 -0
- package/src/schemas/build/checkLink_v3.schema.json +92 -0
- package/src/schemas/build/click_v3.schema.json +77 -0
- package/src/schemas/build/config_v2.schema.json +1079 -0
- package/src/schemas/build/config_v3.schema.json +526 -0
- package/src/schemas/build/context_v2.schema.json +135 -0
- package/src/schemas/build/context_v3.schema.json +229 -0
- package/src/schemas/build/find_v2.schema.json +168 -0
- package/src/schemas/build/find_v3.schema.json +128 -0
- package/src/schemas/build/goTo_v2.schema.json +63 -0
- package/src/schemas/build/goTo_v3.schema.json +63 -0
- package/src/schemas/build/httpRequest_v2.schema.json +321 -0
- package/src/schemas/build/httpRequest_v3.schema.json +385 -0
- package/src/schemas/build/loadVariables_v3.schema.json +10 -0
- package/src/schemas/build/moveTo_v2.schema.json +99 -0
- package/src/schemas/build/openApi_v2.schema.json +76 -0
- package/src/schemas/build/openApi_v3.schema.json +161 -0
- package/src/schemas/build/record_v3.schema.json +70 -0
- package/src/schemas/build/report_v3.schema.json +53 -0
- package/src/schemas/build/resolvedTests_v3.schema.json +238 -0
- package/src/schemas/build/runCode_v2.schema.json +201 -0
- package/src/schemas/build/runCode_v3.schema.json +138 -0
- package/src/schemas/build/runShell_v2.schema.json +189 -0
- package/src/schemas/build/runShell_v3.schema.json +156 -0
- package/src/schemas/build/saveScreenshot_v2.schema.json +150 -0
- package/src/schemas/build/screenshot_v3.schema.json +178 -0
- package/src/schemas/build/setVariables_v2.schema.json +39 -0
- package/src/schemas/build/spec_v2.schema.json +199 -0
- package/src/schemas/build/spec_v3.schema.json +213 -0
- package/src/schemas/build/startRecording_v2.schema.json +57 -0
- package/src/schemas/build/step_v3.schema.json +563 -0
- package/src/schemas/build/stopRecord_v3.schema.json +15 -0
- package/src/schemas/build/stopRecording_v2.schema.json +33 -0
- package/src/schemas/build/test_v2.schema.json +244 -0
- package/src/schemas/build/test_v3.schema.json +292 -0
- package/src/schemas/build/typeKeys_v2.schema.json +72 -0
- package/src/schemas/build/type_v3.schema.json +84 -0
- package/src/schemas/build/wait_v2.schema.json +42 -0
- package/src/schemas/build/wait_v3.schema.json +37 -0
- package/src/schemas/output_schemas/config_v3.schema.json +53 -32
- package/src/schemas/output_schemas/report_v3.schema.json +30 -41
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +83 -73
- package/src/schemas/output_schemas/spec_v3.schema.json +30 -41
- package/src/schemas/output_schemas/step_v3.schema.json +15 -15
- package/src/schemas/output_schemas/test_v3.schema.json +30 -41
- package/src/schemas/schemas.json +241 -243
- package/src/schemas/src_schemas/config_v3.schema.json +20 -2
- package/src/schemas/src_schemas/step_v3.schema.json +1 -1
- package/src/schemas/src_schemas/test_v3.schema.json +0 -11
- package/.coderabbit.yaml +0 -92
- package/.devcontainer/devcontainer.json +0 -37
- package/.github/FUNDING.yml +0 -14
- package/.github/workflows/auto-dev-release.yml +0 -178
- package/.github/workflows/npm-test.yml +0 -86
- package/dev/dev.js +0 -3
- package/docs/auto-dev-release.md +0 -195
- package/test/files.test.js +0 -107
- package/test/schema.test.js +0 -30
|
@@ -117,9 +117,9 @@
|
|
|
117
117
|
"description": "Whether or not to detect steps in input files based on defined markup.",
|
|
118
118
|
"default": true
|
|
119
119
|
},
|
|
120
|
-
"
|
|
120
|
+
"allowUnsafeSteps": {
|
|
121
121
|
"type": "boolean",
|
|
122
|
-
"description": "Whether or not to run potentially unsafe
|
|
122
|
+
"description": "Whether or not to run potentially unsafe steps, such as those that might modify files or system state."
|
|
123
123
|
},
|
|
124
124
|
"logLevel": {
|
|
125
125
|
"description": "Amount of detail to output when performing an operation.",
|
|
@@ -797,7 +797,7 @@
|
|
|
797
797
|
},
|
|
798
798
|
"unsafe": {
|
|
799
799
|
"type": "boolean",
|
|
800
|
-
"description": "Whether or not the
|
|
800
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
801
801
|
"default": false
|
|
802
802
|
},
|
|
803
803
|
"outputs": {
|
|
@@ -844,7 +844,7 @@
|
|
|
844
844
|
},
|
|
845
845
|
"unsafe": {
|
|
846
846
|
"type": "boolean",
|
|
847
|
-
"description": "Whether or not the
|
|
847
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
848
848
|
"default": false
|
|
849
849
|
},
|
|
850
850
|
"outputs": {
|
|
@@ -899,7 +899,7 @@
|
|
|
899
899
|
},
|
|
900
900
|
"unsafe": {
|
|
901
901
|
"type": "boolean",
|
|
902
|
-
"description": "Whether or not the
|
|
902
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
903
903
|
"default": false
|
|
904
904
|
},
|
|
905
905
|
"outputs": {
|
|
@@ -1110,7 +1110,7 @@
|
|
|
1110
1110
|
},
|
|
1111
1111
|
"unsafe": {
|
|
1112
1112
|
"type": "boolean",
|
|
1113
|
-
"description": "Whether or not the
|
|
1113
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1114
1114
|
"default": false
|
|
1115
1115
|
},
|
|
1116
1116
|
"outputs": {
|
|
@@ -1292,7 +1292,7 @@
|
|
|
1292
1292
|
},
|
|
1293
1293
|
"unsafe": {
|
|
1294
1294
|
"type": "boolean",
|
|
1295
|
-
"description": "Whether or not the
|
|
1295
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1296
1296
|
"default": false
|
|
1297
1297
|
},
|
|
1298
1298
|
"outputs": {
|
|
@@ -2088,7 +2088,7 @@
|
|
|
2088
2088
|
},
|
|
2089
2089
|
"unsafe": {
|
|
2090
2090
|
"type": "boolean",
|
|
2091
|
-
"description": "Whether or not the
|
|
2091
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
2092
2092
|
"default": false
|
|
2093
2093
|
},
|
|
2094
2094
|
"outputs": {
|
|
@@ -2245,7 +2245,7 @@
|
|
|
2245
2245
|
},
|
|
2246
2246
|
"unsafe": {
|
|
2247
2247
|
"type": "boolean",
|
|
2248
|
-
"description": "Whether or not the
|
|
2248
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
2249
2249
|
"default": false
|
|
2250
2250
|
},
|
|
2251
2251
|
"outputs": {
|
|
@@ -3243,7 +3243,7 @@
|
|
|
3243
3243
|
},
|
|
3244
3244
|
"unsafe": {
|
|
3245
3245
|
"type": "boolean",
|
|
3246
|
-
"description": "Whether or not the
|
|
3246
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3247
3247
|
"default": false
|
|
3248
3248
|
},
|
|
3249
3249
|
"outputs": {
|
|
@@ -3545,7 +3545,7 @@
|
|
|
3545
3545
|
},
|
|
3546
3546
|
"unsafe": {
|
|
3547
3547
|
"type": "boolean",
|
|
3548
|
-
"description": "Whether or not the
|
|
3548
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3549
3549
|
"default": false
|
|
3550
3550
|
},
|
|
3551
3551
|
"outputs": {
|
|
@@ -3833,7 +3833,7 @@
|
|
|
3833
3833
|
},
|
|
3834
3834
|
"unsafe": {
|
|
3835
3835
|
"type": "boolean",
|
|
3836
|
-
"description": "Whether or not the
|
|
3836
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3837
3837
|
"default": false
|
|
3838
3838
|
},
|
|
3839
3839
|
"outputs": {
|
|
@@ -4049,7 +4049,7 @@
|
|
|
4049
4049
|
},
|
|
4050
4050
|
"unsafe": {
|
|
4051
4051
|
"type": "boolean",
|
|
4052
|
-
"description": "Whether or not the
|
|
4052
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4053
4053
|
"default": false
|
|
4054
4054
|
},
|
|
4055
4055
|
"outputs": {
|
|
@@ -4492,7 +4492,7 @@
|
|
|
4492
4492
|
},
|
|
4493
4493
|
"unsafe": {
|
|
4494
4494
|
"type": "boolean",
|
|
4495
|
-
"description": "Whether or not the
|
|
4495
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4496
4496
|
"default": false
|
|
4497
4497
|
},
|
|
4498
4498
|
"outputs": {
|
|
@@ -4659,7 +4659,7 @@
|
|
|
4659
4659
|
},
|
|
4660
4660
|
"unsafe": {
|
|
4661
4661
|
"type": "boolean",
|
|
4662
|
-
"description": "Whether or not the
|
|
4662
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4663
4663
|
"default": false
|
|
4664
4664
|
},
|
|
4665
4665
|
"outputs": {
|
|
@@ -4739,7 +4739,7 @@
|
|
|
4739
4739
|
},
|
|
4740
4740
|
"unsafe": {
|
|
4741
4741
|
"type": "boolean",
|
|
4742
|
-
"description": "Whether or not the
|
|
4742
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4743
4743
|
"default": false
|
|
4744
4744
|
},
|
|
4745
4745
|
"outputs": {
|
|
@@ -4814,7 +4814,7 @@
|
|
|
4814
4814
|
},
|
|
4815
4815
|
"unsafe": {
|
|
4816
4816
|
"type": "boolean",
|
|
4817
|
-
"description": "Whether or not the
|
|
4817
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4818
4818
|
"default": false
|
|
4819
4819
|
},
|
|
4820
4820
|
"outputs": {
|
|
@@ -5744,6 +5744,18 @@
|
|
|
5744
5744
|
},
|
|
5745
5745
|
"title": "Telemetry options"
|
|
5746
5746
|
},
|
|
5747
|
+
"concurrentRunners": {
|
|
5748
|
+
"type": [
|
|
5749
|
+
"integer",
|
|
5750
|
+
"boolean"
|
|
5751
|
+
],
|
|
5752
|
+
"default": 1,
|
|
5753
|
+
"minimum": 1,
|
|
5754
|
+
"description": "Number of concurrent test runners. Set to true to use CPU core count (capped at 4).",
|
|
5755
|
+
"not": {
|
|
5756
|
+
"const": false
|
|
5757
|
+
}
|
|
5758
|
+
},
|
|
5747
5759
|
"environment": {
|
|
5748
5760
|
"type": "object",
|
|
5749
5761
|
"description": "Environment information for the system running Doc Detective.",
|
|
@@ -5921,7 +5933,7 @@
|
|
|
5921
5933
|
},
|
|
5922
5934
|
"unsafe": {
|
|
5923
5935
|
"type": "boolean",
|
|
5924
|
-
"description": "Whether or not the
|
|
5936
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
5925
5937
|
"default": false
|
|
5926
5938
|
},
|
|
5927
5939
|
"outputs": {
|
|
@@ -5968,7 +5980,7 @@
|
|
|
5968
5980
|
},
|
|
5969
5981
|
"unsafe": {
|
|
5970
5982
|
"type": "boolean",
|
|
5971
|
-
"description": "Whether or not the
|
|
5983
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
5972
5984
|
"default": false
|
|
5973
5985
|
},
|
|
5974
5986
|
"outputs": {
|
|
@@ -6023,7 +6035,7 @@
|
|
|
6023
6035
|
},
|
|
6024
6036
|
"unsafe": {
|
|
6025
6037
|
"type": "boolean",
|
|
6026
|
-
"description": "Whether or not the
|
|
6038
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6027
6039
|
"default": false
|
|
6028
6040
|
},
|
|
6029
6041
|
"outputs": {
|
|
@@ -6234,7 +6246,7 @@
|
|
|
6234
6246
|
},
|
|
6235
6247
|
"unsafe": {
|
|
6236
6248
|
"type": "boolean",
|
|
6237
|
-
"description": "Whether or not the
|
|
6249
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6238
6250
|
"default": false
|
|
6239
6251
|
},
|
|
6240
6252
|
"outputs": {
|
|
@@ -6416,7 +6428,7 @@
|
|
|
6416
6428
|
},
|
|
6417
6429
|
"unsafe": {
|
|
6418
6430
|
"type": "boolean",
|
|
6419
|
-
"description": "Whether or not the
|
|
6431
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6420
6432
|
"default": false
|
|
6421
6433
|
},
|
|
6422
6434
|
"outputs": {
|
|
@@ -7212,7 +7224,7 @@
|
|
|
7212
7224
|
},
|
|
7213
7225
|
"unsafe": {
|
|
7214
7226
|
"type": "boolean",
|
|
7215
|
-
"description": "Whether or not the
|
|
7227
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
7216
7228
|
"default": false
|
|
7217
7229
|
},
|
|
7218
7230
|
"outputs": {
|
|
@@ -7369,7 +7381,7 @@
|
|
|
7369
7381
|
},
|
|
7370
7382
|
"unsafe": {
|
|
7371
7383
|
"type": "boolean",
|
|
7372
|
-
"description": "Whether or not the
|
|
7384
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
7373
7385
|
"default": false
|
|
7374
7386
|
},
|
|
7375
7387
|
"outputs": {
|
|
@@ -8367,7 +8379,7 @@
|
|
|
8367
8379
|
},
|
|
8368
8380
|
"unsafe": {
|
|
8369
8381
|
"type": "boolean",
|
|
8370
|
-
"description": "Whether or not the
|
|
8382
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8371
8383
|
"default": false
|
|
8372
8384
|
},
|
|
8373
8385
|
"outputs": {
|
|
@@ -8669,7 +8681,7 @@
|
|
|
8669
8681
|
},
|
|
8670
8682
|
"unsafe": {
|
|
8671
8683
|
"type": "boolean",
|
|
8672
|
-
"description": "Whether or not the
|
|
8684
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8673
8685
|
"default": false
|
|
8674
8686
|
},
|
|
8675
8687
|
"outputs": {
|
|
@@ -8957,7 +8969,7 @@
|
|
|
8957
8969
|
},
|
|
8958
8970
|
"unsafe": {
|
|
8959
8971
|
"type": "boolean",
|
|
8960
|
-
"description": "Whether or not the
|
|
8972
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8961
8973
|
"default": false
|
|
8962
8974
|
},
|
|
8963
8975
|
"outputs": {
|
|
@@ -9173,7 +9185,7 @@
|
|
|
9173
9185
|
},
|
|
9174
9186
|
"unsafe": {
|
|
9175
9187
|
"type": "boolean",
|
|
9176
|
-
"description": "Whether or not the
|
|
9188
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9177
9189
|
"default": false
|
|
9178
9190
|
},
|
|
9179
9191
|
"outputs": {
|
|
@@ -9616,7 +9628,7 @@
|
|
|
9616
9628
|
},
|
|
9617
9629
|
"unsafe": {
|
|
9618
9630
|
"type": "boolean",
|
|
9619
|
-
"description": "Whether or not the
|
|
9631
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9620
9632
|
"default": false
|
|
9621
9633
|
},
|
|
9622
9634
|
"outputs": {
|
|
@@ -9783,7 +9795,7 @@
|
|
|
9783
9795
|
},
|
|
9784
9796
|
"unsafe": {
|
|
9785
9797
|
"type": "boolean",
|
|
9786
|
-
"description": "Whether or not the
|
|
9798
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9787
9799
|
"default": false
|
|
9788
9800
|
},
|
|
9789
9801
|
"outputs": {
|
|
@@ -9863,7 +9875,7 @@
|
|
|
9863
9875
|
},
|
|
9864
9876
|
"unsafe": {
|
|
9865
9877
|
"type": "boolean",
|
|
9866
|
-
"description": "Whether or not the
|
|
9878
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9867
9879
|
"default": false
|
|
9868
9880
|
},
|
|
9869
9881
|
"outputs": {
|
|
@@ -9938,7 +9950,7 @@
|
|
|
9938
9950
|
},
|
|
9939
9951
|
"unsafe": {
|
|
9940
9952
|
"type": "boolean",
|
|
9941
|
-
"description": "Whether or not the
|
|
9953
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9942
9954
|
"default": false
|
|
9943
9955
|
},
|
|
9944
9956
|
"outputs": {
|
|
@@ -10588,6 +10600,15 @@
|
|
|
10588
10600
|
"platform": "windows",
|
|
10589
10601
|
"arch": "x64"
|
|
10590
10602
|
}
|
|
10603
|
+
},
|
|
10604
|
+
{
|
|
10605
|
+
"concurrentRunners": 1
|
|
10606
|
+
},
|
|
10607
|
+
{
|
|
10608
|
+
"concurrentRunners": true
|
|
10609
|
+
},
|
|
10610
|
+
{
|
|
10611
|
+
"concurrentRunners": 4
|
|
10591
10612
|
}
|
|
10592
10613
|
]
|
|
10593
10614
|
}
|