From f9fe8d3e3c40067148f95d040048f3205382c221 Mon Sep 17 00:00:00 2001 From: Alex Rashed <2796604+alexrashed@users.noreply.github.com> Date: Thu, 12 Feb 2026 14:49:16 +0100 Subject: [PATCH 1/2] update CI to use localstack CI auth token Updated LocalStack step to include authentication token and removed unnecessary docker pull command. --- .github/workflows/integration.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5be7f5f..96739a5 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -61,10 +61,11 @@ jobs: cd "$HOME"/bats-core sudo ./install.sh /usr/local - - name: Start and wait for LocalStack (Community) + - name: Start and wait for LocalStack timeout-minutes: 10 + env: + LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }} run: | - docker pull localstack/localstack:latest localstack start -d localstack wait -t 30 From 3551cd13773b810730573730a64afaa84062dfd7 Mon Sep 17 00:00:00 2001 From: Alex Rashed <2796604+alexrashed@users.noreply.github.com> Date: Thu, 12 Feb 2026 14:51:36 +0100 Subject: [PATCH 2/2] remove wait timeout --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 96739a5..379c733 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -67,7 +67,7 @@ jobs: LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }} run: | localstack start -d - localstack wait -t 30 + localstack wait - name: Run bats tests run: |