Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
node-version: [10.15, 12.13, 14.15]
node-version: [10.24, 12.13, 14.15]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.15, 12.13, 14.15]
node-version: [10.24, 12.13, 14.15]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_layers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -e
LAYER_DIR=".layers"
LAYER_FILES_PREFIX="datadog_lambda_node"

NODE_VERSIONS=("10.15" "12.13" "14.15")
NODE_VERSIONS=("10.24" "12.13" "14.15")

if [ -z "$NODE_VERSION" ]; then
echo "Node version not specified, running for all node versions."
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish_layers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
set -e

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

Expand Down
2 changes: 1 addition & 1 deletion scripts/run_integration_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mismatch_found=false
# [0]: serverless runtime name
# [1]: nodejs version
# [2]: random 8-character ID to avoid collisions with other runs
node10=("nodejs10.x" "10.15" $(xxd -l 4 -c 4 -p < /dev/random))
node10=("nodejs10.x" "10.24" $(xxd -l 4 -c 4 -p < /dev/random))
node12=("nodejs12.x" "12.13" $(xxd -l 4 -c 4 -p < /dev/random))
node14=("nodejs14.x" "14.15" $(xxd -l 4 -c 4 -p < /dev/random))

Expand Down
2 changes: 1 addition & 1 deletion scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Run unit tests in Docker
set -e

NODE_VERSIONS=("10.15" "12.13" "14.15")
NODE_VERSIONS=("10.24" "12.13" "14.15")

for node_version in "${NODE_VERSIONS[@]}"
do
Expand Down
2 changes: 1 addition & 1 deletion scripts/sign_layers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
set -e

LAYER_DIR=".layers"
LAYER_FILES=("datadog_lambda_node10.15.zip" "datadog_lambda_node12.13.zip" "datadog_lambda_node14.15.zip")
LAYER_FILES=("datadog_lambda_node10.24.zip" "datadog_lambda_node12.13.zip" "datadog_lambda_node14.15.zip")
SIGNING_PROFILE_NAME="DatadogLambdaSigningProfile"

# Check account parameter
Expand Down