From 04aa6564ae7423e6d7cce11ccdb30c601cee8d8e Mon Sep 17 00:00:00 2001 From: Justin Van Patten Date: Wed, 20 Sep 2023 22:51:15 -0700 Subject: [PATCH] Update aws-go dependencies It looks like the PRs that automatically update Go dependencies haven't been merged in a while. To make it easier to get started trying the Go generics preview, update the dependencies for the aws-go template to the latest versions, along with the Go 1.20 (Go 1.18 and 1.19 are no longer supported). That way, users trying out generics, only have to update the `pulumi-aws` dependency to the preview branch, and don't have to update the core Pulumi SDK to a more recent version. --- aws-go/go.mod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aws-go/go.mod b/aws-go/go.mod index f520c0cb4..7d3f8d8f0 100644 --- a/aws-go/go.mod +++ b/aws-go/go.mod @@ -1,8 +1,8 @@ module ${PROJECT} -go 1.18 +go 1.20 require ( - github.com/pulumi/pulumi-aws/sdk/v6 v6.0.2 - github.com/pulumi/pulumi/sdk/v3 v3.78.1 + github.com/pulumi/pulumi-aws/sdk/v6 v6.2.0 + github.com/pulumi/pulumi/sdk/v3 v3.84.0 )