Skip to content

Commit 896c8fa

Browse files
authored
Merge branch 'terraform-google-modules:main' into main
2 parents eca1190 + 705217e commit 896c8fa

File tree

8 files changed

+31
-29
lines changed

8 files changed

+31
-29
lines changed

.github/conventional-commit-lint.yaml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/lint.yaml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ name: 'lint'
2020
on:
2121
workflow_dispatch:
2222
pull_request:
23-
branches:
24-
- main
23+
types: [opened, edited, reopened, synchronize]
24+
branches: [main]
25+
26+
permissions:
27+
contents: read
2528

2629
concurrency:
2730
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
@@ -52,3 +55,21 @@ jobs:
5255
env:
5356
ENABLE_BPMETADATA: 1
5457

58+
commitlint:
59+
runs-on: ubuntu-latest
60+
steps:
61+
- uses: actions/checkout@v4
62+
with:
63+
fetch-depth: 0
64+
- name: Setup node
65+
uses: actions/setup-node@v4
66+
with:
67+
node-version: lts/*
68+
- name: Install commitlint
69+
run: |
70+
npm install -D @commitlint/[email protected] @commitlint/[email protected]
71+
echo "module.exports = { extends: ['@commitlint/config-conventional'], rules: {'subject-case': [0]} };" > commitlint.config.js
72+
npx commitlint --version
73+
- name: Validate PR commits with commitlint
74+
if: github.event_name == 'pull_request'
75+
run: 'echo "${{ github.event.pull_request.title }}" | npx commitlint --verbose'

modules/authorization/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020

2121
google = {
2222
source = "hashicorp/google"
23-
version = ">= 4.44, < 7"
23+
version = ">= 4.44, < 8"
2424
}
2525
}
2626

modules/data_warehouse/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ terraform {
1818
required_providers {
1919
google = {
2020
source = "hashicorp/google"
21-
version = ">= 6.11, < 7"
21+
version = ">= 6.11, < 8"
2222
}
2323
google-beta = {
2424
source = "hashicorp/google-beta"
25-
version = ">= 6.11, < 7"
25+
version = ">= 6.11, < 8"
2626
}
2727
archive = {
2828
source = "hashicorp/archive"

modules/data_warehouse/workflow_polling/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ terraform {
1818
required_providers {
1919
google = {
2020
source = "hashicorp/google"
21-
version = ">= 4.52, < 7"
21+
version = ">= 4.52, < 8"
2222
}
2323
google-beta = {
2424
source = "hashicorp/google-beta"
25-
version = ">= 4.52, < 7"
25+
version = ">= 4.52, < 8"
2626
}
2727
archive = {
2828
source = "hashicorp/archive"

modules/scheduled_queries/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020

2121
google = {
2222
source = "hashicorp/google"
23-
version = ">= 4.0, < 7"
23+
version = ">= 4.0, < 8"
2424
}
2525
}
2626

modules/udf/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020

2121
google = {
2222
source = "hashicorp/google"
23-
version = ">= 3.53, < 7"
23+
version = ">= 3.53, < 8"
2424
}
2525
}
2626

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020

2121
google = {
2222
source = "hashicorp/google"
23-
version = ">= 5.39, < 7"
23+
version = ">= 5.39, < 8"
2424
}
2525
}
2626

0 commit comments

Comments
 (0)