Skip to content

Commit 0d15620

Browse files
r1tsuuclaude
andauthored
ci: fix localstack startup (#16048)
LocalStack introduced an auth token requirement in recent versions — https://blog.localstack.cloud/localstack-for-aws-release-2026-03-0/ This PR pins LocalStack to `4.14.0` — a version that does not have the auth gate, so no token or bypass env var is needed. Fixes those tests: <img width="549" height="389" alt="image" src="https://github.com/user-attachments/assets/1572371c-e959-4100-a0e2-068268c0b580" /> --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1213815640035521 --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5c3244f commit 0d15620

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ services:
124124
# ── LocalStack (S3 emulator) ────────────────────────────────
125125
localstack:
126126
profiles: [all, storage]
127-
image: localstack/localstack:latest
127+
image: localstack/localstack:4.14.0
128128
container_name: localstack_demo
129129
ports:
130130
- '4563-4599:4563-4599'
@@ -133,6 +133,7 @@ services:
133133
- SERVICES=s3
134134
- DEBUG=1
135135
- DATA_DIR=/tmp/localstack/data
136+
136137
volumes:
137138
- localstack_data:/var/lib/localstack
138139
- '/var/run/docker.sock:/var/run/docker.sock'

0 commit comments

Comments
 (0)