From 9588d11574853da2629078409bd8c86dc702c3da Mon Sep 17 00:00:00 2001 From: Vishal Katyal Date: Thu, 3 Sep 2026 13:13:46 -0400 Subject: [PATCH] ci: pin the SDK checkout to the declared ucp-sdk version pyproject.toml declares ucp-sdk==0.4.6 and [tool.uv.sources] redirects that dependency to ../python-sdk/, which this workflow checks out with no ref. The suite therefore runs against python-sdk main rather than the declared version, and any SDK release changes the result with no change here. This pins the checkout to v2026-04-08-6, matching ucp-sdk 0.4.6 declared in pyproject.toml. --- .github/workflows/conformance-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/conformance-tests.yml b/.github/workflows/conformance-tests.yml index 6633449..9b5d35e 100644 --- a/.github/workflows/conformance-tests.yml +++ b/.github/workflows/conformance-tests.yml @@ -52,6 +52,7 @@ jobs: uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5 with: repository: Universal-Commerce-Protocol/python-sdk + ref: v2026-04-08-6 path: python-sdk - name: Install uv