Skip to content

Commit 44dc6f5

Browse files
authored
chore: update tests to CFT 1.5 and project-factory ~> 13.0 (#367)
1 parent c9828d0 commit 44dc6f5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Make will use bash instead of sh
1616
SHELL := /usr/bin/env bash
1717

18-
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.0
18+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.5
1919
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2020
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2121

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,4 @@ tags:
156156
- 'integration'
157157
substitutions:
158158
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
159-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.0'
159+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.5'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ tags:
2121
- 'lint'
2222
substitutions:
2323
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
24-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.0'
24+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.5'

test/setup/main.tf

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

1717
module "project" {
1818
source = "terraform-google-modules/project-factory/google"
19-
version = "~> 11.0"
19+
version = "~> 13.0"
2020

2121
name = "ci-network"
2222
random_project_id = "true"

test/setup/versions.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
*/
1616

1717
terraform {
18-
required_version = ">=0.12.6"
18+
required_version = ">=0.13.0"
1919

2020
required_providers {
2121
google = {
22-
version = "~> 3.49"
22+
version = ">= 3.49, < 5.0"
2323
}
2424
google-beta = {
25-
version = "~> 3.49"
25+
version = ">= 3.49, < 5.0"
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)