From 01aa06280026cbc881e975d7774d4c52cd810f60 Mon Sep 17 00:00:00 2001 From: issdandavis <215328633+issdandavis@users.noreply.github.com> Date: Thu, 23 Jul 2026 12:19:48 -0700 Subject: [PATCH 1/3] Update testcontainers cloud token in CI workflow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50dafeb..b6b5859 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,9 @@ jobs: with: node-version: '20.x' - name: Setup Testcontainers Cloud Client - uses: atomicjar/testcontainers-cloud-setup-action@main + uses: atomicjar/testcontainers-cloud-setup-action@v1 with: - token: ${{ secrets.TCC_SECRET_EXAMPLES }} + token: ${{ secrets.TC_CLOUD_TOKEN }} - name: Run example run: | make test From 6a64ea6ed428587b85c499036a99fc60ba238506 Mon Sep 17 00:00:00 2001 From: issdandavis <215328633+issdandavis@users.noreply.github.com> Date: Thu, 23 Jul 2026 12:25:10 -0700 Subject: [PATCH 2/3] Add manual workflow_dispatch trigger for CI --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6b5859..1134e64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: [ main ] pull_request: branches: [ main ] + workflow_dispatch: jobs: build: From fce80e8701aff29c9f915b7949148b47f7d187aa Mon Sep 17 00:00:00 2001 From: issdandavis <215328633+issdandavis@users.noreply.github.com> Date: Thu, 23 Jul 2026 12:28:07 -0700 Subject: [PATCH 3/3] Wait for Testcontainers Cloud client readiness in CI --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1134e64..b12f782 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: uses: atomicjar/testcontainers-cloud-setup-action@v1 with: token: ${{ secrets.TC_CLOUD_TOKEN }} + wait: true - name: Run example run: | make test