File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -142,12 +142,19 @@ jobs:
142
142
steps :
143
143
- name : Checkout
144
144
uses : actions/checkout@v4
145
+ - name : Create fake plugin metadata
146
+ id : create-fake-metadata
147
+ run : |
148
+ tmpfile=$(mktemp)
149
+ sed 's/>=10.4.0/\^11.x/g' src/plugin.json > $tmpfile/plugin.json
150
+ echo "fake_plugin_dir=$tmpfile" >> $GITHUB_OUTPUT
145
151
- name : Resolve Grafana E2E versions
146
152
id : resolve-versions
147
153
uses : grafana/plugin-actions/e2e-version@main
148
154
with :
149
155
skip-grafana-dev-image : true
150
156
limit : 1
157
+ plugin-directory : ${{ steps.create-fake-metadata.outputs.fake_plugin_dir }}
151
158
152
159
playwright-tests :
153
160
needs : [resolve-versions, build]
Original file line number Diff line number Diff line change 25
25
"updated" : " %TODAY%"
26
26
},
27
27
"dependencies" : {
28
- "grafanaDependency" : " ^11.x " ,
28
+ "grafanaDependency" : " >=10.4.0 " ,
29
29
"plugins" : []
30
30
}
31
31
}
You can’t perform that action at this time.
0 commit comments