Skip to content

Commit fe2a5ce

Browse files
watsonbengl
authored andcommitted
Fix Node.js version to v22.6 instead of "latest" (#4629)
This is a temporary fix until v22.8.0 is released due to a bug in v22.7.0: nodejs/node#54518
1 parent f879332 commit fe2a5ce

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/actions/node/latest/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ runs:
44
steps:
55
- uses: actions/setup-node@v3
66
with:
7-
node-version: 'latest'
7+
node-version: '22.6'

.github/workflows/appsec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
matrix:
215215
version:
216216
- 18
217-
- latest
217+
- 22.6
218218
range: ['9.5.0', '11.1.4', '13.2.0', '*']
219219
runs-on: ubuntu-latest
220220
env:

.github/workflows/plugins.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
aws-sdk:
131131
strategy:
132132
matrix:
133-
node-version: ['18', 'latest']
133+
node-version: ['18', '22.6']
134134
runs-on: ubuntu-latest
135135
services:
136136
localstack:
@@ -405,7 +405,7 @@ jobs:
405405
http:
406406
strategy:
407407
matrix:
408-
node-version: ['18', '20', 'latest']
408+
node-version: ['18', '20', '22.6']
409409
runs-on: ubuntu-latest
410410
env:
411411
PLUGINS: http
@@ -645,7 +645,7 @@ jobs:
645645
matrix:
646646
version:
647647
- 18
648-
- latest
648+
- 22.6
649649
range: ['9.5.0', '11.1.4', '13.2.0', '*']
650650
runs-on: ubuntu-latest
651651
env:

.github/workflows/project.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# setting fail-fast to false in an attempt to prevent this from happening
1919
fail-fast: false
2020
matrix:
21-
version: [18, 20, latest]
21+
version: [18, 20, 22.6]
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v4
@@ -47,7 +47,7 @@ jobs:
4747
integration-ci:
4848
strategy:
4949
matrix:
50-
version: [18, latest]
50+
version: [18, 22.6]
5151
framework: [cucumber, playwright, selenium, jest, mocha]
5252
runs-on: ubuntu-latest
5353
env:
@@ -89,7 +89,7 @@ jobs:
8989
# Important: This is outside the minimum supported version of dd-trace-js
9090
# Node > 16 does not work with [email protected] (not even without our plugin)
9191
# TODO: figure out what to do with this: we might have to deprecate support for [email protected]
92-
version: [16, latest]
92+
version: [16, 22.6]
9393
# 6.7.0 is the minimum version we support
9494
cypress-version: [6.7.0, latest]
9595
module-type: ['commonJS', 'esm']

0 commit comments

Comments
 (0)