5656 --summary "$GITHUB_STEP_SUMMARY"
5757 uv run --frozen python -m ci.verification environment \
5858 --plan .tmp/scheduled/verification-plan.json --component selector \
59+ --allow-hosted-runner-drift \
5960 --output .tmp/scheduled/selector-environment.json
6061 uv run --frozen python -m ci.verification record \
6162 --plan .tmp/scheduled/verification-plan.json --component selector \
6768 --artifact-id "ci-selection-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
6869 --artifact-root .tmp/scheduled \
6970 --execution-environment .tmp/scheduled/selector-environment.json \
71+ --allow-hosted-runner-drift \
7072 --machine-output .tmp/scheduled/verification-plan.json \
7173 --output .tmp/scheduled/selector-evidence.json
7274 - name : Preserve the scheduled decision and shared plan
8587 - uses : actions/checkout@v4
8688 with :
8789 ref : ${{ github.sha }}
90+ fetch-depth : 0
8891 - uses : astral-sh/setup-uv@v6
8992 with :
9093 version : " 0.10.11"
@@ -114,6 +117,7 @@ jobs:
114117 environment=.tmp/evidence/$component-environment.json
115118 uv run --frozen python -m ci.verification environment \
116119 --plan .tmp/input/verification-plan.json --component "$component" \
120+ --allow-hosted-runner-drift \
117121 --output "$environment"
118122 uv run --frozen python -m ci.verification record \
119123 --plan .tmp/input/verification-plan.json --component "$component" \
@@ -124,6 +128,7 @@ jobs:
124128 --job-id quality \
125129 --artifact-id "verification-component-quality-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
126130 --artifact-root .tmp/evidence --execution-environment "$environment" \
131+ --allow-hosted-runner-drift \
127132 --machine-output .tmp/evidence/quality-output.log \
128133 --output ".tmp/evidence/$component-evidence.json"
129134 done
@@ -143,6 +148,7 @@ jobs:
143148 - uses : actions/checkout@v4
144149 with :
145150 ref : ${{ github.sha }}
151+ fetch-depth : 0
146152 - uses : astral-sh/setup-uv@v6
147153 with :
148154 version : " 0.10.11"
@@ -159,6 +165,7 @@ jobs:
159165 - uses : actions/checkout@v4
160166 with :
161167 ref : ${{ github.sha }}
168+ fetch-depth : 0
162169 - uses : astral-sh/setup-uv@v6
163170 with :
164171 version : " 0.10.11"
@@ -177,6 +184,7 @@ jobs:
177184 - uses : actions/checkout@v4
178185 with :
179186 ref : ${{ github.sha }}
187+ fetch-depth : 0
180188 - uses : astral-sh/setup-uv@v6
181189 with :
182190 version : " 0.10.11"
@@ -202,6 +210,7 @@ jobs:
202210 mkdir -p .tmp/evidence
203211 uv run --frozen python -m ci.verification environment \
204212 --plan .tmp/input/verification-plan.json --component django \
213+ --allow-hosted-runner-drift \
205214 --output .tmp/evidence/django-environment.json
206215 uv run --frozen python -m ci.verification record \
207216 --plan .tmp/input/verification-plan.json --component django \
@@ -213,6 +222,7 @@ jobs:
213222 --artifact-id "verification-component-django-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
214223 --artifact-root .tmp/evidence \
215224 --execution-environment .tmp/evidence/django-environment.json \
225+ --allow-hosted-runner-drift \
216226 --machine-output .tmp/evidence/django-output.log \
217227 --output .tmp/evidence/django-evidence.json
218228 - uses : actions/upload-artifact@v4
@@ -234,6 +244,7 @@ jobs:
234244 - uses : actions/checkout@v4
235245 with :
236246 ref : ${{ github.sha }}
247+ fetch-depth : 0
237248 - uses : astral-sh/setup-uv@v6
238249 with :
239250 version : " 0.10.11"
@@ -249,7 +260,7 @@ jobs:
249260 run : |
250261 set -euo pipefail
251262 mkdir -p .tmp/evidence
252- make test-playwright 2>&1 | tee .tmp/evidence/playwright-output.log
263+ make test-playwright-core 2>&1 | tee .tmp/evidence/playwright-output.log
253264 - name : Record shared Playwright envelope
254265 if : always()
255266 env :
@@ -259,17 +270,19 @@ jobs:
259270 mkdir -p .tmp/evidence
260271 uv run --frozen python -m ci.verification environment \
261272 --plan .tmp/input/verification-plan.json --component playwright \
273+ --allow-hosted-runner-drift \
262274 --output .tmp/evidence/playwright-environment.json
263275 uv run --frozen python -m ci.verification record \
264276 --plan .tmp/input/verification-plan.json --component playwright \
265- --result "$JOB_STATUS" --command "make test-playwright" \
277+ --result "$JOB_STATUS" --command "make test-playwright-core " \
266278 --origin-kind github_actions --repository-id "$GITHUB_REPOSITORY" \
267279 --workflow .github/workflows/scheduled-full-regression.yml --ref "$GITHUB_REF" \
268280 --run-id "$GITHUB_RUN_ID" --run-attempt "$GITHUB_RUN_ATTEMPT" \
269281 --job-id playwright \
270282 --artifact-id "verification-component-playwright-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
271283 --artifact-root .tmp/evidence \
272284 --execution-environment .tmp/evidence/playwright-environment.json \
285+ --allow-hosted-runner-drift \
273286 --machine-output .tmp/evidence/playwright-output.log \
274287 --output .tmp/evidence/playwright-evidence.json
275288 - uses : actions/upload-artifact@v4
@@ -288,6 +301,7 @@ jobs:
288301 - uses : actions/checkout@v4
289302 with :
290303 ref : ${{ github.sha }}
304+ fetch-depth : 0
291305 - uses : astral-sh/setup-uv@v6
292306 with :
293307 version : " 0.10.11"
@@ -420,6 +434,7 @@ jobs:
420434 }' < .tmp/evidence/container-assertions.txt > .tmp/evidence/container-check.json
421435 uv run --frozen python -m ci.verification environment \
422436 --plan .tmp/input/verification-plan.json --component container \
437+ --allow-hosted-runner-drift \
423438 --output .tmp/evidence/container-environment.json
424439 uv run --frozen python -m ci.verification record \
425440 --plan .tmp/input/verification-plan.json --component container \
@@ -431,6 +446,7 @@ jobs:
431446 --artifact-id "verification-component-container-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
432447 --artifact-root .tmp/evidence \
433448 --execution-environment .tmp/evidence/container-environment.json \
449+ --allow-hosted-runner-drift \
434450 --machine-output .tmp/evidence/container-check.json \
435451 --output .tmp/evidence/container-evidence.json
436452 - uses : actions/upload-artifact@v4
@@ -453,6 +469,7 @@ jobs:
453469 - uses : actions/checkout@v4
454470 with :
455471 ref : ${{ github.sha }}
472+ fetch-depth : 0
456473 - uses : astral-sh/setup-uv@v6
457474 with :
458475 version : " 0.10.11"
@@ -522,6 +539,7 @@ jobs:
522539 - uses : actions/checkout@v4
523540 with :
524541 ref : ${{ github.sha }}
542+ fetch-depth : 0
525543 - uses : astral-sh/setup-uv@v6
526544 with :
527545 version : " 0.10.11"
0 commit comments