Skip to content

Commit 22269a2

Browse files
authored
Upgrading to pulumi-terraform-bridge v2.21.0
1 parent df165b8 commit 22269a2

File tree

15 files changed

+378
-16
lines changed

15 files changed

+378
-16
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ jobs:
368368
- name: Restore binary perms
369369
run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print
370370
-exec chmod +x {} \;
371+
- run: dotnet nuget add source ${{ github.workspace }}/nuget
371372
- name: Download SDK
372373
uses: actions/download-artifact@v2
373374
with:

.github/workflows/prerelease.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,7 @@ jobs:
357357
- name: Restore binary perms
358358
run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print
359359
-exec chmod +x {} \;
360+
- run: dotnet nuget add source ${{ github.workspace }}/nuget
360361
- name: Download SDK
361362
uses: actions/download-artifact@v2
362363
with:

.github/workflows/pull-request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ jobs:
257257
- name: Restore binary perms
258258
run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print
259259
-exec chmod +x {} \;
260+
- run: dotnet nuget add source ${{ github.workspace }}/nuget
260261
- name: Download SDK
261262
uses: actions/download-artifact@v2
262263
with:

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,7 @@ jobs:
376376
- name: Restore binary perms
377377
run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print
378378
-exec chmod +x {} \;
379+
- run: dotnet nuget add source ${{ github.workspace }}/nuget
379380
- name: Download SDK
380381
uses: actions/download-artifact@v2
381382
with:

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## HEAD (Unreleased)
2-
_(none)_
2+
* Upgrade to pulumi-terraform-bridge v2.21.0
3+
* Release macOS arm64 binary
34

45
---
56

examples/go.mod

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
module github.com/pulumi/pulumi-postgresql/examples/v2
22

3-
go 1.14
3+
go 1.16
44

55
require (
66
github.com/onsi/ginkgo v1.12.0 // indirect
77
github.com/onsi/gomega v1.9.0 // indirect
8-
github.com/pulumi/pulumi/pkg/v2 v2.9.3-0.20200901032843-632995149920
9-
github.com/pulumi/pulumi/sdk/v2 v2.9.3-0.20200901032843-632995149920 // indirect
8+
github.com/pulumi/pulumi/pkg/v2 v2.22.1-0.20210309145724-0d5b3d375d56
9+
github.com/pulumi/pulumi/sdk/v2 v2.22.1-0.20210309145724-0d5b3d375d56 // indirect
1010
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
1111
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
1212
)
13-
14-
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.4.3+incompatible

examples/go.sum

Lines changed: 150 additions & 0 deletions
Large diffs are not rendered by default.

provider/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module github.com/pulumi/pulumi-postgresql/provider/v2
22

3-
go 1.14
3+
go 1.16
44

55
require (
66
github.com/hashicorp/terraform-plugin-sdk v1.7.0
7-
github.com/pulumi/pulumi-terraform-bridge/v2 v2.19.0
8-
github.com/pulumi/pulumi/sdk/v2 v2.20.1-0.20210212181059-f4b0fa86fedc
7+
github.com/pulumi/pulumi-terraform-bridge/v2 v2.21.0
8+
github.com/pulumi/pulumi/sdk/v2 v2.22.1-0.20210310211618-1f16423ede4c
99
github.com/terraform-providers/terraform-provider-postgresql v1.7.1
1010
)
1111

provider/go.sum

Lines changed: 209 additions & 0 deletions
Large diffs are not rendered by default.

sdk/dotnet/Pulumi.PostgreSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<ItemGroup>
3333
<EmbeddedResource Include="version.txt" />
34-
<Content Include="version.txt" />
34+
<None Include="version.txt" Pack="True" PackagePath="content" />
3535
</ItemGroup>
3636

3737
<ItemGroup>

0 commit comments

Comments
 (0)