diff --git a/.circleci/config.yml b/.circleci/config.yml index 9a124517..52143c79 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ executors: # should also be updated. golang: docker: - - image: cimg/go:1.24 + - image: cimg/go:1.25 jobs: test: executor: golang @@ -18,7 +18,7 @@ jobs: file: mysqld_exporter integration: docker: - - image: cimg/go:1.24 + - image: cimg/go:1.25 - image: << parameters.mysql_image >> environment: MYSQL_ALLOW_EMPTY_PASSWORD: "yes" diff --git a/.promu.yml b/.promu.yml index ba529025..86cf0241 100644 --- a/.promu.yml +++ b/.promu.yml @@ -1,7 +1,7 @@ go: # Whenever the Go version is updated here, .circle/config.yml should also # be updated. - version: 1.24 + version: 1.25 repository: path: github.com/prometheus/mysqld_exporter build: diff --git a/go.mod b/go.mod index 14452986..23cbeec0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/prometheus/mysqld_exporter -go 1.23.0 +go 1.24.0 require ( github.com/DATA-DOG/go-sqlmock v1.5.2