File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
nodejs/integration-tests/aws-sdk/wrapper Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 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' }}
Original file line number Diff line number Diff 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' }}
Original file line number Diff line number Diff line change 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' }}
Original file line number Diff line number Diff 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' }}
Original file line number Diff line number Diff line change 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' }}
Original file line number Diff line number Diff line change 55resource "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}
You can’t perform that action at this time.
0 commit comments