Skip to content

Commit 089840a

Browse files
authored
feat: add node v24 to workflows (#164)
1 parent 7038b5e commit 089840a

10 files changed

Lines changed: 11 additions & 11 deletions

.github/workflows/plugins-benchmark-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ on:
3434
node-versions:
3535
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
3636
required: false
37-
default: '["20", "22"]'
37+
default: '["20", "22", "24"]'
3838
type: string
3939

4040
jobs:

.github/workflows/plugins-ci-elasticsearch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
node-versions:
3232
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
3333
required: false
34-
default: '["20", "22"]'
34+
default: '["20", "22", "24"]'
3535
type: string
3636

3737
jobs:

.github/workflows/plugins-ci-kafka.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
node-versions:
2727
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
2828
required: false
29-
default: '["20", "22"]'
29+
default: '["20", "22", "24"]'
3030
type: string
3131

3232
jobs:

.github/workflows/plugins-ci-mongo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
node-versions:
2727
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
2828
required: false
29-
default: '["20", "22"]'
29+
default: '["20", "22", "24"]'
3030
type: string
3131

3232
jobs:

.github/workflows/plugins-ci-mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
node-versions:
2727
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
2828
required: false
29-
default: '["20", "22"]'
29+
default: '["20", "22", "24"]'
3030
type: string
3131

3232
jobs:

.github/workflows/plugins-ci-package-manager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
node-versions:
77
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
88
required: false
9-
default: '["20", "22"]'
9+
default: '["20", "22", "24"]'
1010
type: string
1111

1212
jobs:

.github/workflows/plugins-ci-postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
node-versions:
2727
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
2828
required: false
29-
default: '["20", "22"]'
29+
default: '["20", "22", "24"]'
3030
type: string
3131

3232
jobs:

.github/workflows/plugins-ci-redis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
node-versions:
2727
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
2828
required: false
29-
default: '["20", "22"]'
29+
default: '["20", "22", "24"]'
3030
type: string
3131

3232
jobs:

.github/workflows/plugins-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
node-versions:
3232
description: 'A JSON array that specifies the Node.js versions on which the job should run.'
3333
required: false
34-
default: '["20", "22"]'
34+
default: '["20", "22", "24"]'
3535
type: string
3636

3737
jobs:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
| `license-check` | false | boolean | `false` | Set to `true` to check that a repository's production dependencies use permissive licenses: 0BSD, Apache-2.0, BSD-2-Clause, BSD-3-Clause, MIT, or ISC. |
8787
| `license-check-allowed-additional` | false | string | | Provide a semicolon separated list of SPDX-license identifiers that you want to additionally allow. |
8888
| `lint` | false | boolean | `false` | Set to `true` to run the `lint` script in a repository's `package.json`. |
89-
| `node-versions` | false | string | `'["20", "22"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. |
89+
| `node-versions` | false | string | `'["20", "22", "24"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. |
9090

9191
## Benchmark PR workflow
9292

@@ -130,7 +130,7 @@ jobs:
130130
| Input Name | Required | Type | Default | Description |
131131
| ---------------------------------- | ---------- | ------- | ----------- | ---------------------------------------------------------------------------------- |
132132
| `npm-script` | false | string | `benchmark` | Provide the name of the npm script to run |
133-
| `node-versions` | false | string | `'["20", "22"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. |
133+
| `node-versions` | false | string | `'["20", "22", "24"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. |
134134

135135

136136
## Acknowledgments

0 commit comments

Comments
 (0)