We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d3c0b commit a966a7eCopy full SHA for a966a7e
.github/workflows/plugins-ci-elasticsearch.yml
@@ -23,6 +23,11 @@ on:
23
required: false
24
default: false
25
type: boolean
26
+ node-versions:
27
+ description: 'A JSON array that specifies the Node.js versions on which the job should run.'
28
+ required: false
29
+ default: '["18", "20", "21"]'
30
+ type: string
31
32
jobs:
33
dependency-review:
@@ -96,11 +101,10 @@ jobs:
96
101
runs-on: ubuntu-latest
97
102
strategy:
98
103
matrix:
99
- node-version: [18, 20, 21]
100
- db: ['elasticsearch:8.3.2']
104
+ node-version: ${{ fromJson(inputs.node-versions) }}
105
services:
106
elasticsearch:
- image: ${{ matrix.db }}
107
+ image: elasticsearch:8.13.2
108
ports:
109
- '9200:9200'
110
- '9300:9300'
0 commit comments