Skip to content

Commit 0261a13

Browse files
fix(deps)!: Update dependency @google-cloud/bigquery to v7 (#183)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andrew Peabody <[email protected]>
1 parent c4fdd6d commit 0261a13

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/bq-log-alerting/logging/cloud_function/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"@google-cloud/bigquery": "^6.0.0",
3+
"@google-cloud/bigquery": "^7.0.0",
44
"@google-cloud/security-center": ">=3.0.1",
55
"crypto-js": "^4.2.0"
66
}

modules/bq-log-alerting/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module "bq-log-alerting" {
9292
function_entry_point = "cronPubSub"
9393
function_source_directory = "${path.module}/logging/cloud_function"
9494
function_name = "generate-alerts"
95-
function_runtime = "nodejs10"
95+
function_runtime = "nodejs14"
9696
function_service_account_email = google_service_account.gcf_service_account.email
9797
function_timeout_s = var.function_timeout
9898
function_available_memory_mb = var.function_memory

test/integration/bq-log-alerting/controls/gcp.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
its('description') { should eq 'read from BQ view to generate alerts' }
7373
its('timeout') { should eq '540s' }
7474
its('available_memory_mb') { should eq 256 }
75-
its('runtime') { should eq 'nodejs10' }
75+
its('runtime') { should eq 'nodejs14' }
7676
its('environment_variables') {
7777
should include(
7878
'CSCC_SOURCE' => source_name,

0 commit comments

Comments
 (0)