Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/grafana-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.25"

- name: Install dependencies and Build and test frontend
run: |
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.25"

- name: Build through the Maven entrypoint
run: mvn clean package -Pwith-grafana-plugin -DskipTests -ntp
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.25"

- name: Resolve the declared minimum Grafana version
id: floor
Expand Down
8 changes: 3 additions & 5 deletions connectors/grafana-plugin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@

module github.com/grafana/grafana-starter-datasource-backend

go 1.21

toolchain go1.21.0
go 1.25

require (
github.com/apache/iotdb-client-go/v2 v2.0.8
github.com/apache/iotdb-client-go/v2 v2.0.10
github.com/grafana/grafana-plugin-sdk-go v0.250.0
)

require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/apache/arrow/go/v15 v15.0.2 // indirect
github.com/apache/thrift v0.17.0 // indirect
github.com/apache/thrift v0.24.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
Expand Down