Skip to content

Commit b54d311

Browse files
committed
Update NodeJS combined release workflow to Nodejs 20
1 parent 3078208 commit b54d311

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/e2e-nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Set up Node.js
4040
uses: actions/setup-node@v4
4141
with:
42-
node-version: '20'
42+
node-version: '22'
4343

4444
- name: Build combined Node.js layer (amd64)
4545
run: |

.github/workflows/release-combined-layer-java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
4040
with:
4141
distribution: temurin
42-
java-version: 17
42+
java-version: 21
4343

4444
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
4545
with:

.github/workflows/release-combined-layer-nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
4040
with:
41-
node-version: 18
41+
node-version: 22
4242

4343
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
4444
with:

go/build-combined.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ cd "$SCRIPT_DIR"
5454

5555
echo "Combined Go extension layer created: $BUILD_DIR/otel-go-extension-layer.zip"
5656
echo "Layer contents:"
57-
unzip -l "$BUILD_DIR/otel-go-extension-layer.zip" | head -20
57+
unzip -l "$BUILD_DIR/otel-go-extension-layer.zip" | head -20 || true
5858

5959
echo "Build completed successfully!"

nodejs/packages/layer/build-combined.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ cd "$SCRIPT_DIR"
8484
echo "✅ Combined Node.js extension layer created: $BUILD_DIR/otel-nodejs-extension-layer.zip"
8585
echo ""
8686
echo "Layer contents preview:"
87-
unzip -l "$BUILD_DIR/otel-nodejs-extension-layer.zip" | head -20
87+
unzip -l "$BUILD_DIR/otel-nodejs-extension-layer.zip" | head -20 || true
8888
echo ""
8989
echo "Build completed successfully!"

python/src/build-combined.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ cd "$SCRIPT_DIR"
8282
echo "✅ Combined Python extension layer created: $BUILD_DIR/otel-python-extension-layer.zip"
8383
echo ""
8484
echo "Layer contents preview:"
85-
unzip -l "$BUILD_DIR/otel-python-extension-layer.zip" | head -20
85+
unzip -l "$BUILD_DIR/otel-python-extension-layer.zip" | head -20 || true
8686
echo ""
8787
echo "Build completed successfully!"

ruby/build-combined.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ cd "$SCRIPT_DIR"
129129

130130
echo "Combined Ruby extension layer created: $BUILD_DIR/otel-ruby-extension-layer.zip"
131131
echo "Layer contents:"
132-
unzip -l "$BUILD_DIR/otel-ruby-extension-layer.zip" | head -20
132+
unzip -l "$BUILD_DIR/otel-ruby-extension-layer.zip" | head -20 || true
133133

134134
echo "Build completed successfully!"
135135

0 commit comments

Comments
 (0)