From 4592331fa835f5a44fd0ef8fc2c395828da49d23 Mon Sep 17 00:00:00 2001 From: "renovate-sh-app[bot]" <219655108+renovate-sh-app[bot]@users.noreply.github.com> Date: Fri, 20 Feb 2026 02:08:55 +0000 Subject: [PATCH] chore: Update ghcr.io/grafana/grafana-build-tools Docker tag to v1.32.0 | datasource | package | from | to | | ---------- | ----------------------------------- | ------- | ------- | | docker | ghcr.io/grafana/grafana-build-tools | v1.31.1 | v1.32.0 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com> --- .gbt.mk | 2 +- .github/workflows/build_and_publish.yaml | 2 +- .github/workflows/validate_pr.yaml | 2 +- internal/scraper/scraper_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gbt.mk b/.gbt.mk index 1adede224..7bb121a0d 100644 --- a/.gbt.mk +++ b/.gbt.mk @@ -4,4 +4,4 @@ # and a shell script. This is achieved by using the `VAR=value` syntax, which # is valid in both Makefile and shell. -GBT_IMAGE=ghcr.io/grafana/grafana-build-tools:v1.31.1 +GBT_IMAGE=ghcr.io/grafana/grafana-build-tools:v1.32.0 diff --git a/.github/workflows/build_and_publish.yaml b/.github/workflows/build_and_publish.yaml index 111b42350..740949534 100644 --- a/.github/workflows/build_and_publish.yaml +++ b/.github/workflows/build_and_publish.yaml @@ -55,7 +55,7 @@ jobs: - /var/run/docker.sock:/var/run/docker.sock:ro container: - image: ghcr.io/grafana/grafana-build-tools:v1.31.1@sha256:7f95023a95dd9da18108ccc29b16463bcc9300ab21ebd38bd188f6e174df0b9b + image: ghcr.io/grafana/grafana-build-tools:v1.32.0@sha256:3f1ebedf36dcc6a81cbad5af0c48d9e888ee7313eb54b5a64726a29f5cbcb74e volumes: # This works as long as we are using self-hosted runners. # diff --git a/.github/workflows/validate_pr.yaml b/.github/workflows/validate_pr.yaml index 973af45a7..abba747da 100644 --- a/.github/workflows/validate_pr.yaml +++ b/.github/workflows/validate_pr.yaml @@ -21,7 +21,7 @@ jobs: contents: read container: - image: ghcr.io/grafana/grafana-build-tools:v1.31.1@sha256:7f95023a95dd9da18108ccc29b16463bcc9300ab21ebd38bd188f6e174df0b9b + image: ghcr.io/grafana/grafana-build-tools:v1.32.0@sha256:3f1ebedf36dcc6a81cbad5af0c48d9e888ee7313eb54b5a64726a29f5cbcb74e volumes: # This works as long as we are using self-hosted runners. # diff --git a/internal/scraper/scraper_test.go b/internal/scraper/scraper_test.go index 734b7efa9..2a44bff44 100644 --- a/internal/scraper/scraper_test.go +++ b/internal/scraper/scraper_test.go @@ -1697,7 +1697,7 @@ func (l *testLogger) Log(kv ...any) error { buf.WriteString(v.String()) default: - buf.WriteString(fmt.Sprintf("%#v", v)) + fmt.Fprintf(&buf, "%#v", v) } }