fix(connect): sync protocol fixture consumers (#7167)

* fix(connect): sync protocol fixture consumers

* fix(connect): preserve enrollment validation order

* fix(connect): satisfy base64 length lint

* fix(connect): restore signature validation order

* fix(connect): preserve signature precedence across chain parsing

* fix(connect): preserve signature error classification

* test(ci): provide log path in workflow harness
This commit is contained in:
Zhengchao An
2026-09-06 10:12:51 +08:00
committed by GitHub
parent 07833379b4
commit 5dca076efe
13 changed files with 754 additions and 58 deletions
+1
View File
@@ -110,6 +110,7 @@ class SecurityWorkflowTests(WorkflowSteps, unittest.TestCase):
self.env = {
**os.environ, "GITHUB_STEP_SUMMARY": str(self.directory / "summary.md"),
"GITHUB_ENV": str(self.directory / "github-env"), "RUNNER_TEMP": self.temp.name, "TMPDIR": self.temp.name,
"LOG_FILE": str(self.directory / "suite.log"),
}
for key in ("server_url", "repository", "run_id", "run_attempt", "sha", "event_name"):
self.env[f"GITHUB_{key.upper()}"] = self.context[f"github.{key}"]