Skip to content

Commit e046589

Browse files
authored
Merge branch 'main' into renovate/cloudposse-rds-cluster-aws-2.x
2 parents 63e8847 + e3000ee commit e046589

File tree

6 files changed

+49
-31
lines changed

6 files changed

+49
-31
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,14 @@
33
#
44
# Order is important: the last matching pattern has the highest precedence
55

6-
# These owners will be the default owners for everything
7-
* @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors
8-
96
# Cloud Posse must review any changes to Makefiles
107
**/Makefile @cloudposse-terraform-components/engineering
118
**/Makefile.* @cloudposse-terraform-components/engineering
129

13-
# Cloud Posse must review any changes to GitHub actions
14-
.github/* @cloudposse-terraform-components/engineering
15-
16-
# Cloud Posse must review any changes to standard context definition,
17-
# but some changes can be rubber-stamped.
18-
**/*.tf @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers
19-
README.yaml @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers
20-
README.md @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers
21-
docs/*.md @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers
10+
# Cloud Posse must review any changes to pre-commit configuration
11+
.pre-commit-config.yaml @cloudposse-terraform-components/engineering
2212

23-
# Cloud Posse Admins must review all changes to CODEOWNERS or the mergify configuration
13+
# Cloud Posse Admins must review all changes to CODEOWNERS, github configuration or the mergify configuration
14+
.github/* @cloudposse-terraform-components/admins
2415
.github/mergify.yml @cloudposse-terraform-components/admins
2516
.github/CODEOWNERS @cloudposse-terraform-components/admins

.github/settings.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ repository:
55
description: This component is responsible for provisioning Aurora Postgres RDS clusters
66
homepage: https://cloudposse.com/accelerate
77
topics: terraform, terraform-component
8+
9+
10+
11+
12+

.github/workflows/automerge.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: auto merge
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
pr_number:
6+
description: 'PR number'
7+
required: true
8+
type: string
9+
10+
permissions:
11+
pull-requests: write
12+
id-token: write
13+
contents: write
14+
15+
jobs:
16+
automerge:
17+
uses: cloudposse-terraform-components/.github/.github/workflows/shared-auto-merge.yml@main
18+
with:
19+
pr_number: ${{ inputs.pr_number }}
20+
secrets: inherit

.github/workflows/branch.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ on:
55
branches:
66
- main
77
- release/**
8-
types: [opened, synchronize, reopened, labeled, unlabeled]
8+
types: [opened, synchronize, reopened]
99
push:
1010
branches:
1111
- main
1212
- release/v*
1313
paths-ignore:
1414
- '.github/**'
1515
- 'test/**'
16+
merge_group:
17+
types: [checks_requested]
1618

1719
permissions:
1820
contents: write

test/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ require (
110110
github.com/zclconf/go-cty v1.15.0 // indirect
111111
go.uber.org/atomic v1.9.0 // indirect
112112
go.uber.org/multierr v1.9.0 // indirect
113-
golang.org/x/crypto v0.32.0 // indirect
113+
golang.org/x/crypto v0.36.0 // indirect
114114
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
115115
golang.org/x/mod v0.18.0 // indirect
116-
golang.org/x/net v0.34.0 // indirect
117-
golang.org/x/sync v0.10.0 // indirect
118-
golang.org/x/sys v0.29.0 // indirect
119-
golang.org/x/text v0.21.0 // indirect
116+
golang.org/x/net v0.38.0 // indirect
117+
golang.org/x/sync v0.12.0 // indirect
118+
golang.org/x/sys v0.31.0 // indirect
119+
golang.org/x/text v0.23.0 // indirect
120120
golang.org/x/tools v0.22.0 // indirect
121121
gopkg.in/ini.v1 v1.67.0 // indirect
122122
)

test/go.sum

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -237,23 +237,23 @@ go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=
237237
go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
238238
go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI=
239239
go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ=
240-
golang.org/x/crypto v0.32.0 h1:euUpcYgM8WcP71gNpTqQCn6rC2t6ULUPiOzfWaXVVfc=
241-
golang.org/x/crypto v0.32.0/go.mod h1:ZnnJkOaASj8g0AjIduWNlq2NRxL0PlBrbKVyZ6V/Ugc=
240+
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34=
241+
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
242242
golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM8rJBtfilJ2qTU199MI=
243243
golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo=
244244
golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0=
245245
golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
246-
golang.org/x/net v0.34.0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0=
247-
golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k=
248-
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
249-
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
246+
golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8=
247+
golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
248+
golang.org/x/sync v0.12.0 h1:MHc5BpPuC30uJk597Ri8TV3CNZcTLu6B6z4lJy+g6Jw=
249+
golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
250250
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
251-
golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
252-
golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
253-
golang.org/x/term v0.28.0 h1:/Ts8HFuMR2E6IP/jlo7QVLZHggjKQbhu/7H0LJFr3Gg=
254-
golang.org/x/term v0.28.0/go.mod h1:Sw/lC2IAUZ92udQNf3WodGtn4k/XoLyZoh8v/8uiwek=
255-
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
256-
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
251+
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
252+
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
253+
golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y=
254+
golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g=
255+
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
256+
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
257257
golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA=
258258
golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c=
259259
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

0 commit comments

Comments
 (0)