Skip to content

Commit cb9f316

Browse files
Update nodejs depdencies to 16 (#860)
* Update GHA node ver * Update lambda compatible runtimes * Use node16 in GHA wf
1 parent 1a811cc commit cb9f316

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- uses: actions/setup-node@v4
8989
if: ${{ matrix.language == 'nodejs' }}
9090
with:
91-
node-version: '14'
91+
node-version: '16'
9292
- name: Cache (NodeJS)
9393
uses: actions/cache@v3
9494
if: ${{ matrix.language == 'nodejs' }}

.github/workflows/main-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- uses: actions/setup-node@v4
106106
if: ${{ matrix.language == 'nodejs' }}
107107
with:
108-
node-version: '14'
108+
node-version: '16'
109109
- name: Cache (NodeJS)
110110
uses: actions/cache@v3
111111
if: ${{ matrix.language == 'nodejs' }}

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/setup-node@v4
4646
if: ${{ matrix.language == 'nodejs' }}
4747
with:
48-
node-version: '14'
48+
node-version: '16'
4949
- name: Cache (NodeJS)
5050
uses: actions/cache@v3
5151
if: ${{ matrix.language == 'nodejs' }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ jobs:
233233
- uses: actions/setup-node@v4
234234
if: ${{ env.TEST_LANGUAGE == 'nodejs' }}
235235
with:
236-
node-version: '14'
236+
node-version: '16'
237237
- name: Cache (NodeJS)
238238
uses: actions/cache@v3
239239
if: ${{ env.TEST_LANGUAGE == 'nodejs' }}

.github/workflows/soaking.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
- uses: actions/setup-node@v4
9999
if: ${{ matrix.language == 'nodejs' }}
100100
with:
101-
node-version: '14'
101+
node-version: '16'
102102
- name: Cache (NodeJS)
103103
uses: actions/cache@v3
104104
if: ${{ matrix.language == 'nodejs' }}

nodejs/integration-tests/aws-sdk/wrapper/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ locals {
55
resource "aws_lambda_layer_version" "sdk_layer" {
66
layer_name = var.sdk_layer_name
77
filename = "${path.module}/../../../../opentelemetry-lambda/nodejs/packages/layer/build/layer.zip"
8-
compatible_runtimes = ["nodejs14.x", "nodejs16.x", "nodejs18.x"]
8+
compatible_runtimes = ["nodejs16.x", "nodejs18.x"]
99
license_info = "Apache-2.0"
1010
source_code_hash = filebase64sha256("${path.module}/../../../../opentelemetry-lambda/nodejs/packages/layer/build/layer.zip")
1111
}
@@ -14,7 +14,7 @@ resource "aws_lambda_layer_version" "collector_layer" {
1414
count = var.enable_collector_layer ? 1 : 0
1515
layer_name = var.collector_layer_name
1616
filename = "${path.module}/../../../../opentelemetry-lambda/collector/build/opentelemetry-collector-layer-${local.architecture}.zip"
17-
compatible_runtimes = ["nodejs14.x", "nodejs16.x", "nodejs18.x"]
17+
compatible_runtimes = ["nodejs16.x", "nodejs18.x"]
1818
license_info = "Apache-2.0"
1919
source_code_hash = filebase64sha256("${path.module}/../../../../opentelemetry-lambda/collector/build/opentelemetry-collector-layer-${local.architecture}.zip")
2020
}

0 commit comments

Comments
 (0)