From 1a0006265e530798d51316a7c3dd0ec3a8a51cc0 Mon Sep 17 00:00:00 2001 From: Stefano Maestri Date: Wed, 9 Jul 2025 21:23:34 +0200 Subject: [PATCH] fix(run-tck): update TCK repository reference The a2a-tck repository has been moved from maeste/a2a-tck to a2aproject/a2a-tck. This commit updates the checkout action in the run-tck.yml workflow to point to the new repository location. --- .github/workflows/run-tck.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tck.yml b/.github/workflows/run-tck.yml index 726f2c29b..d2cba0890 100644 --- a/.github/workflows/run-tck.yml +++ b/.github/workflows/run-tck.yml @@ -11,7 +11,7 @@ on: env: # Tag of the TCK - TCK_VERSION: 0.2.3 + TCK_VERSION: v0.2.3 # Tells uv to not need a venv, and instead use system UV_SYSTEM_PYTHON: 1 @@ -29,7 +29,7 @@ jobs: - name: Checkout a2a-tck uses: actions/checkout@v4 with: - repository: maeste/a2a-tck + repository: a2aproject/a2a-tck path: tck/a2a-tck ref: ${{ env.TCK_VERSION }} - name: Set up JDK 17