Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .gbt.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/build_and_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion internal/scraper/scraper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down
Loading