Skip to content

Commit

Permalink
Updating DynamoDB version
Browse files Browse the repository at this point in the history
  • Loading branch information
VardhanThigle committed Dec 20, 2024
1 parent 734593f commit 606e43f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/integration-tests-against-emulator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# set DynamoDB related environment variables
AWS_ACCESS_KEY_ID: dummyId
AWS_SECRET_ACCESS_KEY: dummyKey
AWS_REGION: dummyRegion
AWS_REGION: local
DYNAMODB_ENDPOINT_OVERRIDE: http://localhost:8000

# sql server envs
Expand Down Expand Up @@ -76,10 +76,15 @@ jobs:
# needed because the mysql container does not provide a healthcheck
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
dynamodb_emulator:
image: amazon/dynamodb-local:1.16.0
image: amazon/dynamodb-local:2.5.3
ports:
- 8000:8000
options: --workdir /home/dynamodblocal --health-cmd "curl --fail http://127.0.0.1:8000/shell/ || exit 1" --health-interval 10s --health-timeout 5s --health-retries 5
- 8001:8000
env:
AWS_ACCESS_KEY_ID: dummyId
AWS_SECRET_ACCESS_KEY: dummyKey
AWS_REGION: local
options: --workdir /home/dynamodblocal --health-cmd "curl --fail http://localhost:8000/shell/ || exit 1" --health-interval 10s --health-timeout 5s --health-retries 5
sqlserver:
image: mcr.microsoft.com/mssql/server:2022-latest
env:
Expand Down

0 comments on commit 606e43f

Please sign in to comment.