Skip to content

Commit d04f4e4

Browse files
chore(deps): bump amazon/dynamodb-local from 3.1.0 to 3.3.0 in the docker group (#169)
* chore(deps): bump amazon/dynamodb-local in the docker group Bumps the docker group with 1 update: amazon/dynamodb-local. Updates `amazon/dynamodb-local` from 3.1.0 to 3.3.0 --- updated-dependencies: - dependency-name: amazon/dynamodb-local dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker ... Signed-off-by: dependabot[bot] <support@github.com> * fix: update testcontainer dynamodb version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Levi Zitting <me@levizitting.com>
1 parent a03421e commit d04f4e4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# From https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html
22
services:
33
dynamodb-local:
4-
image: 'amazon/dynamodb-local:3.1.0'
4+
image: 'amazon/dynamodb-local:3.3.0'
55
ports:
66
- '${DYNAMODB_PORT:-8000}:8000'
77
working_dir: '/home/dynamodblocal'

pkg/shared/db/test_db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func NewTestDB(ctx context.Context) (*TestDB, error) {
4141
func NewTestDBWithoutMigrations(ctx context.Context) (*TestDB, error) {
4242
ctr, err := tcdynamodb.Run(
4343
ctx,
44-
"amazon/dynamodb-local:3.1.0",
44+
"amazon/dynamodb-local:3.3.0",
4545
tcdynamodb.WithDisableTelemetry(),
4646
)
4747
if err != nil {

0 commit comments

Comments
 (0)