Skip to content

Commit 1f8c116

Browse files
Bump node 10 version to 10.24 (#187)
1 parent c5c60be commit 1f8c116

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
max-parallel: 4
3838
matrix:
39-
node-version: [10.15, 12.13, 14.15]
39+
node-version: [10.24, 12.13, 14.15]
4040
steps:
4141
- name: Checkout
4242
uses: actions/checkout@v2

.github/workflows/check-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node-version: [10.15, 12.13, 14.15]
10+
node-version: [10.24, 12.13, 14.15]
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2

scripts/build_layers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set -e
1111
LAYER_DIR=".layers"
1212
LAYER_FILES_PREFIX="datadog_lambda_node"
1313

14-
NODE_VERSIONS=("10.15" "12.13" "14.15")
14+
NODE_VERSIONS=("10.24" "12.13" "14.15")
1515

1616
if [ -z "$NODE_VERSION" ]; then
1717
echo "Node version not specified, running for all node versions."

scripts/publish_layers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
set -e
1212

1313
NODE_VERSIONS_FOR_AWS_CLI=("nodejs10.x" "nodejs12.x" "nodejs14.x")
14-
LAYER_PATHS=(".layers/datadog_lambda_node10.15.zip" ".layers/datadog_lambda_node12.13.zip" ".layers/datadog_lambda_node14.15.zip")
14+
LAYER_PATHS=(".layers/datadog_lambda_node10.24.zip" ".layers/datadog_lambda_node12.13.zip" ".layers/datadog_lambda_node14.15.zip")
1515
AVAILABLE_LAYERS=("Datadog-Node10-x" "Datadog-Node12-x" "Datadog-Node14-x")
1616
AVAILABLE_REGIONS=$(aws ec2 describe-regions | jq -r '.[] | .[] | .RegionName')
1717

scripts/run_integration_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mismatch_found=false
2929
# [0]: serverless runtime name
3030
# [1]: nodejs version
3131
# [2]: random 8-character ID to avoid collisions with other runs
32-
node10=("nodejs10.x" "10.15" $(xxd -l 4 -c 4 -p < /dev/random))
32+
node10=("nodejs10.x" "10.24" $(xxd -l 4 -c 4 -p < /dev/random))
3333
node12=("nodejs12.x" "12.13" $(xxd -l 4 -c 4 -p < /dev/random))
3434
node14=("nodejs14.x" "14.15" $(xxd -l 4 -c 4 -p < /dev/random))
3535

scripts/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Run unit tests in Docker
99
set -e
1010

11-
NODE_VERSIONS=("10.15" "12.13" "14.15")
11+
NODE_VERSIONS=("10.24" "12.13" "14.15")
1212

1313
for node_version in "${NODE_VERSIONS[@]}"
1414
do

scripts/sign_layers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
set -e
99

1010
LAYER_DIR=".layers"
11-
LAYER_FILES=("datadog_lambda_node10.15.zip" "datadog_lambda_node12.13.zip" "datadog_lambda_node14.15.zip")
11+
LAYER_FILES=("datadog_lambda_node10.24.zip" "datadog_lambda_node12.13.zip" "datadog_lambda_node14.15.zip")
1212
SIGNING_PROFILE_NAME="DatadogLambdaSigningProfile"
1313

1414
# Check account parameter

0 commit comments

Comments
 (0)