* feat: update to Go 1.22.11 * chore: make drone * CI: Force re-build * chore: go work use * build: update mariadb connection The new Alpine base that the Golang images are built on no longer trust the CA of MySQL. This is a backport of: https://github.com/grafana/grafana/pull/98857 (cherry picked from commite1bb8ccb79) (cherry picked from commit5becd9ac03)
16 lines
353 B
Plaintext
16 lines
353 B
Plaintext
go 1.22.11
|
|
|
|
use (
|
|
.
|
|
./pkg/apimachinery
|
|
./pkg/apiserver
|
|
./pkg/build
|
|
./pkg/build/wire
|
|
./pkg/promlib
|
|
./pkg/util/xorm
|
|
)
|
|
|
|
// when we release xorm we would like to release it like github.com/grafana/grafana/pkg/util/xorm
|
|
// but we don't want to change all the imports. so we use replace to handle this situation
|
|
replace xorm.io/xorm => ./pkg/util/xorm
|