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 88
88
- uses : actions/setup-node@v4
89
89
if : ${{ matrix.language == 'nodejs' }}
90
90
with :
91
- node-version : ' 14 '
91
+ node-version : ' 16 '
92
92
- name : Cache (NodeJS)
93
93
uses : actions/cache@v3
94
94
if : ${{ matrix.language == 'nodejs' }}
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105
105
- uses : actions/setup-node@v4
106
106
if : ${{ matrix.language == 'nodejs' }}
107
107
with :
108
- node-version : ' 14 '
108
+ node-version : ' 16 '
109
109
- name : Cache (NodeJS)
110
110
uses : actions/cache@v3
111
111
if : ${{ matrix.language == 'nodejs' }}
Original file line number Diff line number Diff line change 45
45
- uses : actions/setup-node@v4
46
46
if : ${{ matrix.language == 'nodejs' }}
47
47
with :
48
- node-version : ' 14 '
48
+ node-version : ' 16 '
49
49
- name : Cache (NodeJS)
50
50
uses : actions/cache@v3
51
51
if : ${{ matrix.language == 'nodejs' }}
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ jobs:
233
233
- uses : actions/setup-node@v4
234
234
if : ${{ env.TEST_LANGUAGE == 'nodejs' }}
235
235
with :
236
- node-version : ' 14 '
236
+ node-version : ' 16 '
237
237
- name : Cache (NodeJS)
238
238
uses : actions/cache@v3
239
239
if : ${{ env.TEST_LANGUAGE == 'nodejs' }}
Original file line number Diff line number Diff line change 98
98
- uses : actions/setup-node@v4
99
99
if : ${{ matrix.language == 'nodejs' }}
100
100
with :
101
- node-version : ' 14 '
101
+ node-version : ' 16 '
102
102
- name : Cache (NodeJS)
103
103
uses : actions/cache@v3
104
104
if : ${{ matrix.language == 'nodejs' }}
Original file line number Diff line number Diff line change 5
5
resource "aws_lambda_layer_version" "sdk_layer" {
6
6
layer_name = var. sdk_layer_name
7
7
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" ]
9
9
license_info = " Apache-2.0"
10
10
source_code_hash = filebase64sha256 (" ${ path . module } /../../../../opentelemetry-lambda/nodejs/packages/layer/build/layer.zip" )
11
11
}
@@ -14,7 +14,7 @@ resource "aws_lambda_layer_version" "collector_layer" {
14
14
count = var. enable_collector_layer ? 1 : 0
15
15
layer_name = var. collector_layer_name
16
16
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" ]
18
18
license_info = " Apache-2.0"
19
19
source_code_hash = filebase64sha256 (" ${ path . module } /../../../../opentelemetry-lambda/collector/build/opentelemetry-collector-layer-${ local . architecture } .zip" )
20
20
}
You can’t perform that action at this time.
0 commit comments