We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad4297f commit 8700220Copy full SHA for 8700220
deployment/modules/webhook/main.tf
@@ -35,7 +35,7 @@ resource "google_storage_bucket_object" "publish_to_bcr_function_bucket_object"
35
resource "google_cloudfunctions_function" "publish_to_bcr_function" {
36
name = "github-webhook"
37
description = "Handle incoming github events"
38
- runtime = "nodejs18"
+ runtime = "nodejs20"
39
40
available_memory_mb = 1024
41
source_archive_bucket = google_storage_bucket.source_archive_bucket.name
package.json
@@ -4,7 +4,8 @@
4
"type": "module",
5
"main": "./application/webhook/index.js",
6
"engines": {
7
- "node": "^18"
+ "node": "^20",
8
+ "pnpm": ">=9"
9
},
10
"scripts": {
11
"prebuild": "node tools/clean-dist-files.js",
0 commit comments