From fded65d9fc0944f9f431cd5f13d7c4f8557feec7 Mon Sep 17 00:00:00 2001 From: Christian Nunciato Date: Thu, 7 Dec 2023 15:01:56 -0800 Subject: [PATCH] Fix the GCP go.mod template --- alicloud-go/go.mod | 2 +- gcp-go/go.mod | 2 +- generator/mod-templates/gcp-template.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/alicloud-go/go.mod b/alicloud-go/go.mod index 8f95966a6..06d4d09d5 100644 --- a/alicloud-go/go.mod +++ b/alicloud-go/go.mod @@ -3,6 +3,6 @@ module ${PROJECT} go 1.20 require ( - github.com/pulumi/pulumi-alicloud/sdk/v3 v3.45.0 + github.com/pulumi/pulumi-alicloud/sdk/v3 v3.45.1 github.com/pulumi/pulumi/sdk/v3 v3.96.0 ) diff --git a/gcp-go/go.mod b/gcp-go/go.mod index c63582549..f645f9514 100644 --- a/gcp-go/go.mod +++ b/gcp-go/go.mod @@ -3,6 +3,6 @@ module ${PROJECT} go 1.20 require ( - github.com/pulumi/pulumi-gcp/sdk/v6 v7.2.1 + github.com/pulumi/pulumi-gcp/sdk/v7 v7.2.1 github.com/pulumi/pulumi/sdk/v3 v3.96.0 ) diff --git a/generator/mod-templates/gcp-template.txt b/generator/mod-templates/gcp-template.txt index 2258aa4d9..efd13eaac 100644 --- a/generator/mod-templates/gcp-template.txt +++ b/generator/mod-templates/gcp-template.txt @@ -3,6 +3,6 @@ module ${PROJECT} go 1.20 require ( - github.com/pulumi/pulumi-gcp/sdk/v6 ${VERSION} + github.com/pulumi/pulumi-gcp/sdk/v7 ${VERSION} github.com/pulumi/pulumi/sdk/v3 ${PULUMI_VERSION} )