Skip to content

Commit 03ed17e

Browse files
authored
fix: (run-tck): update TCK repository reference (#175)
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. # Description Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Follow the [`CONTRIBUTING` Guide](../CONTRIBUTING.md). - [x] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification. - Important Prefixes for [release-please](https://github.com/googleapis/release-please): - `fix:` which represents bug fixes, and correlates to a [SemVer](https://semver.org/) patch. - `feat:` represents a new feature, and correlates to a SemVer minor. - `feat!:`, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the `!`) and will result in a SemVer major. - [x] Ensure the tests pass - [x] Appropriate READMEs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
1 parent abe92d8 commit 03ed17e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run-tck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
# Tag of the TCK
14-
TCK_VERSION: 0.2.3
14+
TCK_VERSION: v0.2.3
1515
# Tells uv to not need a venv, and instead use system
1616
UV_SYSTEM_PYTHON: 1
1717

@@ -29,7 +29,7 @@ jobs:
2929
- name: Checkout a2a-tck
3030
uses: actions/checkout@v4
3131
with:
32-
repository: maeste/a2a-tck
32+
repository: a2aproject/a2a-tck
3333
path: tck/a2a-tck
3434
ref: ${{ env.TCK_VERSION }}
3535
- name: Set up JDK 17

0 commit comments

Comments
 (0)