deps: update AWS SDK (#2809)

* deps: update AWS SDK

* deps: fix AWS SDK upgrade breakage

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Markus Rudy <mr@edgeless.systems>
This commit is contained in:
renovate[bot] 2024-01-09 16:18:33 +01:00 committed by GitHub
parent a8bca88eeb
commit bacb8ff886
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 139 additions and 138 deletions

View file

@ -46,7 +46,7 @@ func deleteRecursive(ctx context.Context, path string, client *staticupload.Clie
Bucket: aws.String(cfg.bucket),
Delete: &s3types.Delete{
Objects: objIDs,
Quiet: true,
Quiet: toPtr(true),
},
})
if err != nil {
@ -55,3 +55,7 @@ func deleteRecursive(ctx context.Context, path string, client *staticupload.Clie
}
return nil
}
func toPtr[T any](v T) *T {
return &v
}