Skip to content

Commit 405010d

Browse files
fix(deps)!: update function_runtime to nodejs20 (#281)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent eaa5016 commit 405010d

File tree

7 files changed

+64
-24
lines changed

7 files changed

+64
-24
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Make will use bash instead of sh
1919
SHELL := /usr/bin/env bash
2020

21-
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.23
21+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.25
2222
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Then perform the following commands on the root folder:
5353
| function\_labels | A set of key/value label pairs to assign to the function. | `map(string)` | `{}` | no |
5454
| function\_max\_instances | The maximum number of parallel executions of the function. | `number` | `null` | no |
5555
| function\_name | The name to apply to the function | `string` | n/a | yes |
56-
| function\_runtime | The runtime in which the function will be executed. | `string` | `"nodejs10"` | no |
56+
| function\_runtime | The runtime in which the function will be executed. | `string` | `"nodejs20"` | no |
5757
| function\_secret\_environment\_variables | A list of maps which contains key, project\_id, secret\_name (not the full secret id) and version to assign to the function as a set of secret environment variables. | `list(map(string))` | `[]` | no |
5858
| function\_service\_account\_email | The service account to run the function as. | `string` | `""` | no |
5959
| function\_source\_archive\_bucket\_labels | A set of key/value label pairs to assign to the function source archive bucket. | `map(string)` | `{}` | no |

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ tags:
4141
- 'integration'
4242
substitutions:
4343
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
44-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.23'
44+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.25'

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.23'
24+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.25'

test/integration/go.mod

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ module github.com/terraform-google-modules/terraform-google-scheduled-function/t
22

33
go 1.23.0
44

5-
toolchain go1.23.6
5+
toolchain go1.24.7
66

77
require (
8-
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.5
9-
github.com/stretchr/testify v1.10.0
8+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.8
9+
github.com/stretchr/testify v1.11.1
1010
)
1111

1212
require (
@@ -28,12 +28,12 @@ require (
2828
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2929
github.com/golang/protobuf v1.5.4 // indirect
3030
github.com/google/gnostic-models v0.6.9 // indirect
31-
github.com/google/go-cmp v0.6.0 // indirect
31+
github.com/google/go-cmp v0.7.0 // indirect
3232
github.com/google/s2a-go v0.1.8 // indirect
3333
github.com/google/uuid v1.6.0 // indirect
3434
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
3535
github.com/googleapis/gax-go/v2 v2.14.0 // indirect
36-
github.com/gruntwork-io/terratest v0.48.1 // indirect
36+
github.com/gruntwork-io/terratest v0.50.0 // indirect
3737
github.com/hashicorp/errwrap v1.1.0 // indirect
3838
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
3939
github.com/hashicorp/go-getter v1.7.6 // indirect
@@ -43,8 +43,8 @@ require (
4343
github.com/hashicorp/go-version v1.7.0 // indirect
4444
github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f // indirect
4545
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
46-
github.com/hashicorp/terraform-config-inspect v0.0.0-20241129133400-c404f8227ea6 // indirect
47-
github.com/hashicorp/terraform-json v0.24.0 // indirect
46+
github.com/hashicorp/terraform-config-inspect v0.0.0-20250515145901-f4c50e64fd6d // indirect
47+
github.com/hashicorp/terraform-json v0.25.0 // indirect
4848
github.com/jinzhu/copier v0.4.0 // indirect
4949
github.com/jmespath/go-jmespath v0.4.0 // indirect
5050
github.com/josharian/intern v1.0.0 // indirect
@@ -62,26 +62,28 @@ require (
6262
github.com/tidwall/sjson v1.2.5 // indirect
6363
github.com/tmccombs/hcl2json v0.6.4 // indirect
6464
github.com/ulikunitz/xz v0.5.11 // indirect
65-
github.com/zclconf/go-cty v1.15.1 // indirect
65+
github.com/zclconf/go-cty v1.16.2 // indirect
6666
go.opencensus.io v0.24.0 // indirect
67-
golang.org/x/crypto v0.31.0 // indirect
68-
golang.org/x/mod v0.22.0 // indirect
69-
golang.org/x/net v0.33.0 // indirect
70-
golang.org/x/oauth2 v0.24.0 // indirect
71-
golang.org/x/sync v0.10.0 // indirect
72-
golang.org/x/sys v0.28.0 // indirect
73-
golang.org/x/text v0.21.0 // indirect
74-
golang.org/x/tools v0.26.0 // indirect
67+
go.yaml.in/yaml/v2 v2.4.2 // indirect
68+
go.yaml.in/yaml/v3 v3.0.3 // indirect
69+
golang.org/x/crypto v0.39.0 // indirect
70+
golang.org/x/mod v0.26.0 // indirect
71+
golang.org/x/net v0.41.0 // indirect
72+
golang.org/x/oauth2 v0.27.0 // indirect
73+
golang.org/x/sync v0.15.0 // indirect
74+
golang.org/x/sys v0.33.0 // indirect
75+
golang.org/x/text v0.26.0 // indirect
76+
golang.org/x/tools v0.34.0 // indirect
7577
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
7678
google.golang.org/api v0.206.0 // indirect
7779
google.golang.org/appengine v1.6.8 // indirect
7880
google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f // indirect
7981
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
8082
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
8183
google.golang.org/grpc v1.67.1 // indirect
82-
google.golang.org/protobuf v1.35.1 // indirect
84+
google.golang.org/protobuf v1.36.1 // indirect
8385
gopkg.in/yaml.v3 v3.0.1 // indirect
8486
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
85-
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
86-
sigs.k8s.io/yaml v1.4.0 // indirect
87+
sigs.k8s.io/kustomize/kyaml v0.20.0 // indirect
88+
sigs.k8s.io/yaml v1.5.0 // indirect
8789
)

0 commit comments

Comments
 (0)