Skip to content

Commit f772fb2

Browse files
authored
Merge branch 'cyrilgdn:main' into main
2 parents 36669d3 + dea1401 commit f772fb2

10 files changed

+345
-97
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ jobs:
3232
-
3333
name: Import GPG key
3434
id: import_gpg
35-
uses: paultyng/ghaction-import-gpg@v2.1.0
36-
env:
37-
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
38-
PASSPHRASE: ${{ secrets.PASSPHRASE }}
35+
uses: crazy-max/ghaction-import-gpg@v6.1.0
36+
with:
37+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
38+
passphrase: ${{ secrets.PASSPHRASE }}
3939
-
4040
name: Run GoReleaser
41-
uses: goreleaser/goreleaser-action@v2
41+
uses: goreleaser/goreleaser-action@v6
4242
with:
4343
version: latest
44-
args: release --rm-dist
44+
args: release --clean
4545
env:
4646
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
4747
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Visit https://goreleaser.com for documentation on how to customize this
22
# behavior.
3+
version: 2
34
before:
45
hooks:
56
# this is just an example and not a requirement for provider building/publishing
@@ -47,8 +48,8 @@ signs:
4748
- "${signature}"
4849
- "--detach-sign"
4950
- "${artifact}"
50-
release:
51-
# Visit your project's GitHub Releases page to publish this release.
52-
#draft: true
51+
release: {}
52+
# If you want to manually examine the release before its live, uncomment this line:
53+
# draft: true
5354
changelog:
54-
skip: true
55+
disable: true

go.mod

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,28 @@ module github.com/terraform-providers/terraform-provider-postgresql
33
go 1.20
44

55
require (
6-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0
7-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0
6+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
7+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
88
github.com/aws/aws-sdk-go-v2 v1.20.0
99
github.com/aws/aws-sdk-go-v2/config v1.18.32
1010
github.com/aws/aws-sdk-go-v2/feature/rds/auth v1.2.12
1111
github.com/blang/semver v3.5.1+incompatible
1212
github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1
1313
github.com/lib/pq v1.10.9
1414
github.com/sean-/postgresql-acl v0.0.0-20161225120419-d10489e5d217
15-
github.com/stretchr/testify v1.8.4
15+
github.com/stretchr/testify v1.9.0
1616
gocloud.dev v0.34.0
17-
golang.org/x/net v0.13.0
17+
golang.org/x/net v0.26.0
1818
golang.org/x/oauth2 v0.10.0
19+
google.golang.org/api v0.134.0
1920
)
2021

2122
require (
2223
cloud.google.com/go/compute v1.23.0 // indirect
2324
cloud.google.com/go/compute/metadata v0.2.3 // indirect
2425
contrib.go.opencensus.io/integrations/ocsql v0.1.7 // indirect
25-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect
26-
github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0 // indirect
26+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
27+
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
2728
github.com/GoogleCloudPlatform/cloudsql-proxy v1.33.9 // indirect
2829
github.com/agext/levenshtein v1.2.3 // indirect
2930
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
@@ -39,12 +40,12 @@ require (
3940
github.com/aws/smithy-go v1.14.0 // indirect
4041
github.com/davecgh/go-spew v1.1.1 // indirect
4142
github.com/fatih/color v1.15.0 // indirect
42-
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
43+
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
4344
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4445
github.com/golang/protobuf v1.5.3 // indirect
4546
github.com/google/go-cmp v0.5.9 // indirect
4647
github.com/google/s2a-go v0.1.4 // indirect
47-
github.com/google/uuid v1.3.0 // indirect
48+
github.com/google/uuid v1.6.0 // indirect
4849
github.com/google/wire v0.5.0 // indirect
4950
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
5051
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
@@ -76,7 +77,7 @@ require (
7677
github.com/mitchellh/mapstructure v1.5.0 // indirect
7778
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7879
github.com/oklog/run v1.1.0 // indirect
79-
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
80+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
8081
github.com/pmezard/go-difflib v1.0.0 // indirect
8182
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
8283
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
@@ -86,15 +87,14 @@ require (
8687
go.uber.org/atomic v1.11.0 // indirect
8788
go.uber.org/multierr v1.11.0 // indirect
8889
go.uber.org/zap v1.24.0 // indirect
89-
golang.org/x/crypto v0.17.0 // indirect
90-
golang.org/x/mod v0.10.0 // indirect
91-
golang.org/x/sys v0.15.0 // indirect
92-
golang.org/x/text v0.14.0 // indirect
90+
golang.org/x/crypto v0.24.0 // indirect
91+
golang.org/x/mod v0.17.0 // indirect
92+
golang.org/x/sys v0.21.0 // indirect
93+
golang.org/x/text v0.16.0 // indirect
9394
golang.org/x/time v0.3.0 // indirect
94-
google.golang.org/api v0.134.0 // indirect
9595
google.golang.org/appengine v1.6.7 // indirect
9696
google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf // indirect
9797
google.golang.org/grpc v1.57.0 // indirect
98-
google.golang.org/protobuf v1.31.0 // indirect
98+
google.golang.org/protobuf v1.33.0 // indirect
9999
gopkg.in/yaml.v3 v3.0.1 // indirect
100100
)

0 commit comments

Comments
 (0)