diff --git a/.github/workflows/plugins-benchmark-pr.yml b/.github/workflows/plugins-benchmark-pr.yml index a58cd4e..ddd4f12 100644 --- a/.github/workflows/plugins-benchmark-pr.yml +++ b/.github/workflows/plugins-benchmark-pr.yml @@ -34,7 +34,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-elasticsearch.yml b/.github/workflows/plugins-ci-elasticsearch.yml index d685676..0b101e9 100644 --- a/.github/workflows/plugins-ci-elasticsearch.yml +++ b/.github/workflows/plugins-ci-elasticsearch.yml @@ -31,7 +31,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-kafka.yml b/.github/workflows/plugins-ci-kafka.yml index 29ef063..6306fb7 100644 --- a/.github/workflows/plugins-ci-kafka.yml +++ b/.github/workflows/plugins-ci-kafka.yml @@ -26,7 +26,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-mongo.yml b/.github/workflows/plugins-ci-mongo.yml index 6bfed7d..21e02e0 100644 --- a/.github/workflows/plugins-ci-mongo.yml +++ b/.github/workflows/plugins-ci-mongo.yml @@ -26,7 +26,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-mysql.yml b/.github/workflows/plugins-ci-mysql.yml index e576285..50b184c 100644 --- a/.github/workflows/plugins-ci-mysql.yml +++ b/.github/workflows/plugins-ci-mysql.yml @@ -26,7 +26,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-package-manager.yml b/.github/workflows/plugins-ci-package-manager.yml index d9c6659..6279974 100644 --- a/.github/workflows/plugins-ci-package-manager.yml +++ b/.github/workflows/plugins-ci-package-manager.yml @@ -6,7 +6,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-postgres.yml b/.github/workflows/plugins-ci-postgres.yml index 1fe7c56..17d43db 100644 --- a/.github/workflows/plugins-ci-postgres.yml +++ b/.github/workflows/plugins-ci-postgres.yml @@ -26,7 +26,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-redis.yml b/.github/workflows/plugins-ci-redis.yml index 22cc4d7..fb1ad48 100644 --- a/.github/workflows/plugins-ci-redis.yml +++ b/.github/workflows/plugins-ci-redis.yml @@ -26,7 +26,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/.github/workflows/plugins-ci.yml b/.github/workflows/plugins-ci.yml index 54f4e34..45ca8ad 100644 --- a/.github/workflows/plugins-ci.yml +++ b/.github/workflows/plugins-ci.yml @@ -31,7 +31,7 @@ on: node-versions: description: 'A JSON array that specifies the Node.js versions on which the job should run.' required: false - default: '["20", "22"]' + default: '["20", "22", "24"]' type: string jobs: diff --git a/README.md b/README.md index e00bed4..a877006 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ jobs: | `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. | | `license-check-allowed-additional` | false | string | | Provide a semicolon separated list of SPDX-license identifiers that you want to additionally allow. | | `lint` | false | boolean | `false` | Set to `true` to run the `lint` script in a repository's `package.json`. | -| `node-versions` | false | string | `'["20", "22"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | +| `node-versions` | false | string | `'["20", "22", "24"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | ## Benchmark PR workflow @@ -130,7 +130,7 @@ jobs: | Input Name | Required | Type | Default | Description | | ---------------------------------- | ---------- | ------- | ----------- | ---------------------------------------------------------------------------------- | | `npm-script` | false | string | `benchmark` | Provide the name of the npm script to run | -| `node-versions` | false | string | `'["20", "22"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | +| `node-versions` | false | string | `'["20", "22", "24"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | ## Acknowledgments