Skip to content

Commit

Permalink
Fix Node.js version to v22.6 instead of "latest" (#4629)
Browse files Browse the repository at this point in the history
This is a temporary fix until v22.8.0 is released due to a bug in
v22.7.0: nodejs/node#54518
  • Loading branch information
watson committed Aug 27, 2024
1 parent 6fabbd0 commit 2ded936
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/node/latest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ runs:
steps:
- uses: actions/setup-node@v3
with:
node-version: 'latest'
node-version: '22.6'
2 changes: 1 addition & 1 deletion .github/workflows/appsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
matrix:
version:
- 18
- latest
- 22.6
range: ['9.5.0', '11.1.4', '13.2.0', '*']
runs-on: ubuntu-latest
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
aws-sdk:
strategy:
matrix:
node-version: ['18', 'latest']
node-version: ['18', '22.6']
runs-on: ubuntu-latest
services:
localstack:
Expand Down Expand Up @@ -412,7 +412,7 @@ jobs:
http:
strategy:
matrix:
node-version: ['18', '20', 'latest']
node-version: ['18', '20', '22.6']
runs-on: ubuntu-latest
env:
PLUGINS: http
Expand Down Expand Up @@ -648,7 +648,7 @@ jobs:
matrix:
version:
- 18
- latest
- 22.6
range: ['9.5.0', '11.1.4', '13.2.0', '*']
runs-on: ubuntu-latest
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# setting fail-fast to false in an attempt to prevent this from happening
fail-fast: false
matrix:
version: [18, 20, latest]
version: [18, 20, 22.6]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
integration-ci:
strategy:
matrix:
version: [18, latest]
version: [18, 22.6]
framework: [cucumber, playwright, selenium, jest, mocha]
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
# Important: This is outside the minimum supported version of dd-trace-js
# Node > 16 does not work with Cypress@6.7.0 (not even without our plugin)
# TODO: figure out what to do with this: we might have to deprecate support for cypress@6.7.0
version: [16, latest]
version: [16, 22.6]
# 6.7.0 is the minimum version we support
cypress-version: [6.7.0, latest]
module-type: ['commonJS', 'esm']
Expand Down

0 comments on commit 2ded936

Please sign in to comment.