File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2929 name : CD
3030 uses : grafana/plugin-ci-workflows/.github/workflows/cd.yml@main
3131 with :
32- golangci-lint-version : ' 1.64.6'
32+ golangci-lint-version : ' 2.4.0'
33+ go-version : ' 1.25'
3334 branch : ${{ github.event.inputs.branch }}
3435 environment : ${{ github.event.inputs.environment }}
3536 docs-only : ${{ fromJSON(github.event.inputs.docs-only) }}
Original file line number Diff line number Diff line change 1616 name : CI
1717 uses : grafana/plugin-ci-workflows/.github/workflows/ci.yml@main
1818 with :
19- golangci-lint-version : ' 1.64.6'
19+ golangci-lint-version : ' 2.4.0'
20+ go-version : ' 1.25'
2021 plugin-version-suffix : ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || '' }}
2122 run-playwright : true
Original file line number Diff line number Diff line change 11module github.com/grafana/mqtt-datasource
22
3- go 1.24.6
3+ go 1.25
44
55require (
66 github.com/eclipse/paho.mqtt.golang v1.5.0
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ func TestClient_Subscribe_Deduplication(t *testing.T) {
166166
167167 // Verify only one topic is stored
168168 count := 0
169- c .topics .Map . Range (func (key , value interface {} ) bool {
169+ c .topics .Range (func (key , value any ) bool {
170170 count ++
171171 return true
172172 })
@@ -199,7 +199,7 @@ func TestClient_Subscribe_MultipleStreamingKeys(t *testing.T) {
199199
200200 // Verify all three topics are stored separately
201201 count := 0
202- c .topics .Map . Range (func (key , value interface {} ) bool {
202+ c .topics .Range (func (key , value any ) bool {
203203 count ++
204204 return true
205205 })
You can’t perform that action at this time.
0 commit comments