doc-detective-common 3.1.0-dev.0 → 3.1.0-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.
@@ -0,0 +1,178 @@
1
+ name: Auto Dev Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ # Don't trigger on release events to avoid conflicts with main release workflow
8
+ workflow_dispatch:
9
+ # Allow manual triggering for testing
10
+
11
+ jobs:
12
+ auto-dev-release:
13
+ runs-on: ubuntu-latest
14
+ timeout-minutes: 10
15
+ # Skip if this is a release commit or docs-only changes
16
+ if: |
17
+ !contains(github.event.head_commit.message, '[skip ci]') &&
18
+ !contains(github.event.head_commit.message, 'Release') &&
19
+ github.event_name != 'release'
20
+
21
+ steps:
22
+ - name: Checkout code
23
+ uses: actions/checkout@v4
24
+ with:
25
+ # Need full history for proper version bumping
26
+ fetch-depth: 0
27
+ # Use a token that can push back to the repo
28
+ token: ${{ secrets.DD_DEP_UPDATE_TOKEN }}
29
+
30
+ - name: Setup Node.js
31
+ uses: actions/setup-node@v4
32
+ with:
33
+ node-version: '18'
34
+ cache: 'npm'
35
+ cache-dependency-path: package-lock.json
36
+ registry-url: 'https://registry.npmjs.org/'
37
+
38
+ - name: Check for documentation-only changes
39
+ id: check_changes
40
+ run: |
41
+ # Always release on workflow_dispatch
42
+ if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
43
+ echo "skip_release=false" >> $GITHUB_OUTPUT
44
+ echo "Manual trigger: proceeding with release"
45
+ exit 0
46
+ fi
47
+
48
+ # Get list of changed files
49
+ CHANGED_FILES=$(git diff --name-only ${{ github.event.before }}..${{ github.event.after }})
50
+
51
+ echo "Changed files:"
52
+ echo "$CHANGED_FILES"
53
+
54
+ # Check if only documentation files changed
55
+ if echo "$CHANGED_FILES" | grep -v -E '\.(md|txt|yml|yaml)$|^\.github/' | grep -q .; then
56
+ echo "skip_release=false" >> $GITHUB_OUTPUT
57
+ echo "Code changes detected, proceeding with release"
58
+ else
59
+ echo "skip_release=true" >> $GITHUB_OUTPUT
60
+ echo "Only documentation changes detected, skipping release"
61
+ fi
62
+
63
+ - name: Validate package.json
64
+ if: steps.check_changes.outputs.skip_release == 'false'
65
+ run: |
66
+ # Validate package.json exists and is valid JSON
67
+ if [ ! -f "package.json" ]; then
68
+ echo "❌ package.json not found"
69
+ exit 1
70
+ fi
71
+
72
+ # Validate JSON syntax
73
+ if ! node -p "JSON.parse(require('fs').readFileSync('package.json', 'utf8'))" > /dev/null 2>&1; then
74
+ echo "❌ package.json is not valid JSON"
75
+ exit 1
76
+ fi
77
+
78
+ # Check for required fields
79
+ if ! node -p "require('./package.json').name" > /dev/null 2>&1; then
80
+ echo "❌ package.json missing 'name' field"
81
+ exit 1
82
+ fi
83
+
84
+ if ! node -p "require('./package.json').version" > /dev/null 2>&1; then
85
+ echo "❌ package.json missing 'version' field"
86
+ exit 1
87
+ fi
88
+
89
+ echo "✅ package.json validation passed"
90
+
91
+ - name: Install dependencies
92
+ if: steps.check_changes.outputs.skip_release == 'false'
93
+ run: npm ci
94
+
95
+ - name: Run tests
96
+ if: steps.check_changes.outputs.skip_release == 'false'
97
+ run: npm test
98
+
99
+ - name: Run build
100
+ if: steps.check_changes.outputs.skip_release == 'false'
101
+ run: npm run build
102
+
103
+ - name: Configure Git
104
+ run: |
105
+ git config --global user.name 'github-actions[bot]'
106
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
107
+
108
+ - name: Generate dev version
109
+ if: steps.check_changes.outputs.skip_release == 'false'
110
+ id: version
111
+ run: |
112
+ # Get current version from package.json
113
+ CURRENT_VERSION=$(node -p "require('./package.json').version")
114
+ echo "Current version: $CURRENT_VERSION"
115
+
116
+ # Extract base version (remove existing -dev.X suffix if present)
117
+ BASE_VERSION=$(echo $CURRENT_VERSION | sed 's/-dev\.[0-9]*$//')
118
+ echo "Base version: $BASE_VERSION"
119
+
120
+ # Check if we need to get the latest dev version from npm
121
+ LATEST_DEV=$(npm view doc-detective-common@dev version 2>/dev/null || echo "")
122
+
123
+ if [ -n "$LATEST_DEV" ] && [[ $LATEST_DEV == $BASE_VERSION-dev.* ]]; then
124
+ # Extract the dev number and increment it
125
+ DEV_NUM=$(echo $LATEST_DEV | grep -o 'dev\.[0-9]*$' | grep -o '[0-9]*$')
126
+ NEW_DEV_NUM=$((DEV_NUM + 1))
127
+ else
128
+ # Start with dev.1
129
+ NEW_DEV_NUM=1
130
+ fi
131
+
132
+ NEW_VERSION="$BASE_VERSION-dev.$NEW_DEV_NUM"
133
+ echo "New version: $NEW_VERSION"
134
+
135
+ # Update package.json
136
+ npm version $NEW_VERSION --no-git-tag-version
137
+
138
+ # Set outputs
139
+ echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
140
+ echo "base_version=$BASE_VERSION" >> $GITHUB_OUTPUT
141
+
142
+ - name: Commit version change
143
+ if: steps.check_changes.outputs.skip_release == 'false'
144
+ run: |
145
+ git add package.json package-lock.json
146
+ git commit -m "Auto dev release: v${{ steps.version.outputs.version }} [skip ci]"
147
+
148
+ - name: Create and push git tag
149
+ if: steps.check_changes.outputs.skip_release == 'false'
150
+ run: |
151
+ git tag "v${{ steps.version.outputs.version }}"
152
+ git push origin "v${{ steps.version.outputs.version }}"
153
+ git push origin main
154
+
155
+ - name: Publish to npm
156
+ if: steps.check_changes.outputs.skip_release == 'false'
157
+ run: |
158
+ # Add error handling for npm publish
159
+ set -e
160
+ echo "📦 Publishing to npm with 'dev' tag..."
161
+ npm publish --tag dev
162
+ echo "✅ Successfully published to npm"
163
+ env:
164
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
165
+
166
+ - name: Summary
167
+ if: steps.check_changes.outputs.skip_release == 'false'
168
+ run: |
169
+ echo "✅ Auto dev release completed successfully!"
170
+ echo "📦 Version: v${{ steps.version.outputs.version }}"
171
+ echo "🏷️ NPM Tag: dev"
172
+ echo "📋 Install with: npm install doc-detective-common@dev"
173
+
174
+ - name: Skip summary
175
+ if: steps.check_changes.outputs.skip_release == 'true'
176
+ run: |
177
+ echo "⏭️ Auto dev release skipped"
178
+ echo "📝 Only documentation changes detected"
package/README.md CHANGED
@@ -0,0 +1,48 @@
1
+ # Doc Detective Common
2
+
3
+ Shared components for Doc Detective projects.
4
+
5
+ ## 📦 Installation
6
+
7
+ ```bash
8
+ # Install stable version
9
+ npm install doc-detective-common
10
+
11
+ # Install latest development version
12
+ npm install doc-detective-common@dev
13
+ ```
14
+
15
+ ## 🚀 Development Releases
16
+
17
+ This package automatically publishes development versions on every commit to the main branch. This enables dependent libraries to consume the latest changes without waiting for formal releases.
18
+
19
+ - **Dev versions** follow the pattern: `3.1.0-dev.1`, `3.1.0-dev.2`, etc.
20
+ - **Available via npm**: `npm install doc-detective-common@dev`
21
+ - **Documentation**: See [Auto Dev Release Guide](./docs/auto-dev-release.md)
22
+
23
+ ## 📚 API
24
+
25
+ This package exports the following components:
26
+
27
+ - `schemas` - JSON schemas for validation
28
+ - `validate` - Validation functions
29
+ - `resolvePaths` - Path resolution utilities
30
+ - `readFile` - File reading utilities
31
+ - `transformToSchemaKey` - Schema key transformation
32
+
33
+ ## 🧪 Development
34
+
35
+ ```bash
36
+ # Install dependencies
37
+ npm install
38
+
39
+ # Run tests
40
+ npm test
41
+
42
+ # Build schemas
43
+ npm run build
44
+ ```
45
+
46
+ ## 📄 License
47
+
48
+ AGPL-3.0-only
@@ -117,6 +117,10 @@
117
117
  "description": "Whether or not to detect steps in input files based on defined markup.",
118
118
  "default": true
119
119
  },
120
+ "allowUnsafeSteps": {
121
+ "type": "boolean",
122
+ "description": "Whether or not to run potentially unsafe steps, such as those that might modify files or system state."
123
+ },
120
124
  "logLevel": {
121
125
  "description": "Amount of detail to output when performing an operation.",
122
126
  "type": "string",
@@ -129,10 +133,6 @@
129
133
  ],
130
134
  "default": "info"
131
135
  },
132
- "allowUnsafeMarkup": {
133
- "type": "boolean",
134
- "description": "Whether or not to run potentially unsafe markup detected in input files."
135
- },
136
136
  "runOn": {
137
137
  "type": "array",
138
138
  "description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
@@ -797,7 +797,7 @@
797
797
  },
798
798
  "unsafe": {
799
799
  "type": "boolean",
800
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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 test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
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": {
@@ -5921,7 +5921,7 @@
5921
5921
  },
5922
5922
  "unsafe": {
5923
5923
  "type": "boolean",
5924
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
5924
+ "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
5925
  "default": false
5926
5926
  },
5927
5927
  "outputs": {
@@ -5968,7 +5968,7 @@
5968
5968
  },
5969
5969
  "unsafe": {
5970
5970
  "type": "boolean",
5971
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
5971
+ "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
5972
  "default": false
5973
5973
  },
5974
5974
  "outputs": {
@@ -6023,7 +6023,7 @@
6023
6023
  },
6024
6024
  "unsafe": {
6025
6025
  "type": "boolean",
6026
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
6026
+ "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
6027
  "default": false
6028
6028
  },
6029
6029
  "outputs": {
@@ -6234,7 +6234,7 @@
6234
6234
  },
6235
6235
  "unsafe": {
6236
6236
  "type": "boolean",
6237
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
6237
+ "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
6238
  "default": false
6239
6239
  },
6240
6240
  "outputs": {
@@ -6416,7 +6416,7 @@
6416
6416
  },
6417
6417
  "unsafe": {
6418
6418
  "type": "boolean",
6419
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
6419
+ "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
6420
  "default": false
6421
6421
  },
6422
6422
  "outputs": {
@@ -7212,7 +7212,7 @@
7212
7212
  },
7213
7213
  "unsafe": {
7214
7214
  "type": "boolean",
7215
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
7215
+ "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
7216
  "default": false
7217
7217
  },
7218
7218
  "outputs": {
@@ -7369,7 +7369,7 @@
7369
7369
  },
7370
7370
  "unsafe": {
7371
7371
  "type": "boolean",
7372
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
7372
+ "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
7373
  "default": false
7374
7374
  },
7375
7375
  "outputs": {
@@ -8367,7 +8367,7 @@
8367
8367
  },
8368
8368
  "unsafe": {
8369
8369
  "type": "boolean",
8370
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
8370
+ "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
8371
  "default": false
8372
8372
  },
8373
8373
  "outputs": {
@@ -8669,7 +8669,7 @@
8669
8669
  },
8670
8670
  "unsafe": {
8671
8671
  "type": "boolean",
8672
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
8672
+ "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
8673
  "default": false
8674
8674
  },
8675
8675
  "outputs": {
@@ -8957,7 +8957,7 @@
8957
8957
  },
8958
8958
  "unsafe": {
8959
8959
  "type": "boolean",
8960
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
8960
+ "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
8961
  "default": false
8962
8962
  },
8963
8963
  "outputs": {
@@ -9173,7 +9173,7 @@
9173
9173
  },
9174
9174
  "unsafe": {
9175
9175
  "type": "boolean",
9176
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9176
+ "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
9177
  "default": false
9178
9178
  },
9179
9179
  "outputs": {
@@ -9616,7 +9616,7 @@
9616
9616
  },
9617
9617
  "unsafe": {
9618
9618
  "type": "boolean",
9619
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9619
+ "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
9620
  "default": false
9621
9621
  },
9622
9622
  "outputs": {
@@ -9783,7 +9783,7 @@
9783
9783
  },
9784
9784
  "unsafe": {
9785
9785
  "type": "boolean",
9786
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9786
+ "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
9787
  "default": false
9788
9788
  },
9789
9789
  "outputs": {
@@ -9863,7 +9863,7 @@
9863
9863
  },
9864
9864
  "unsafe": {
9865
9865
  "type": "boolean",
9866
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9866
+ "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
9867
  "default": false
9868
9868
  },
9869
9869
  "outputs": {
@@ -9938,7 +9938,7 @@
9938
9938
  },
9939
9939
  "unsafe": {
9940
9940
  "type": "boolean",
9941
- "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9941
+ "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
9942
  "default": false
9943
9943
  },
9944
9944
  "outputs": {