diff --git a/.github/workflows/plugins-benchmark-pr.yml b/.github/workflows/plugins-benchmark-pr.yml index bb948d5..876e434 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-elasticsearch.yml b/.github/workflows/plugins-ci-elasticsearch.yml index 328b5c1..b5bfdc5 100644 --- a/.github/workflows/plugins-ci-elasticsearch.yml +++ b/.github/workflows/plugins-ci-elasticsearch.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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: @@ -43,7 +43,7 @@ jobs: persist-credentials: false - name: Dependency review - uses: actions/dependency-review-action@v3 + uses: actions/dependency-review-action@v4 license-check: if: > diff --git a/.github/workflows/plugins-ci-kafka.yml b/.github/workflows/plugins-ci-kafka.yml index 11eb915..8fb792a 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: @@ -43,7 +43,7 @@ jobs: persist-credentials: false - name: Dependency review - uses: actions/dependency-review-action@v3 + uses: actions/dependency-review-action@v4 license-check: if: > @@ -135,7 +135,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: npm i --ignore-scripts + run: npm i - name: Run tests run: npm test diff --git a/.github/workflows/plugins-ci-mongo.yml b/.github/workflows/plugins-ci-mongo.yml index f9256a5..74c556e 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-mysql.yml b/.github/workflows/plugins-ci-mysql.yml index 160bf2d..72ed4fb 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-package-manager.yml b/.github/workflows/plugins-ci-package-manager.yml index 5ea4474..f38905f 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-postgres.yml b/.github/workflows/plugins-ci-postgres.yml index 6b3a316..fc802dc 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: diff --git a/.github/workflows/plugins-ci-redis.yml b/.github/workflows/plugins-ci-redis.yml index 3573da7..6d24ec6 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: diff --git a/.github/workflows/plugins-ci.yml b/.github/workflows/plugins-ci.yml index 90aa5a2..9e69c22 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: '["18", "20", "21"]' + default: '["20", "22"]' type: string jobs: diff --git a/README.md b/README.md index ee60ed9..eaa9241 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,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 | `'["18", "20", "21"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | +| `node-versions` | false | string | `'["20", "22"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | ## Benchmark PR workflow @@ -112,7 +112,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 | `'["18", "20", "21"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | +| `node-versions` | false | string | `'["20", "22"]'` | Provide A JSON array that specifies the Node.js versions on which the job should run. | ## Acknowledgements