diff --git a/.github/workflows/dependabot_serverless_gomod.yml b/.github/workflows/dependabot_serverless_gomod.yml index a346494fc75..aaedaf4ddd8 100644 --- a/.github/workflows/dependabot_serverless_gomod.yml +++ b/.github/workflows/dependabot_serverless_gomod.yml @@ -17,10 +17,10 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} steps: - - name: Set up Go 1.22 + - name: Set up Go 1.23 uses: actions/setup-go@v5 with: - go-version: 1.23.1 + go-version: 1.23.3 - name: Get app token uses: actions/create-github-app-token@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 13664f220a5..4446482f3ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ * [CHANGE] **BREAKING CHANGE** Migrate from OpenTracing to OpenTelemetry instrumentation. Removed the `use_otel_tracer` configuration option. Use the OpenTelemetry environment variables to configure the span exporter [#3646](https://github.com/grafana/tempo/pull/3646) (@andreasgerstmayr) To continue using the Jaeger exporter, use the following environment variable: `OTEL_TRACES_EXPORTER=jaeger`. * [CHANGE] No longer send the final diff in GRPC streaming. Instead we rely on the streamed intermediate results. [#4062](https://github.com/grafana/tempo/pull/4062) (@joe-elliott) -* [CHANGE] Update Go to 1.23.1 [#4146](https://github.com/grafana/tempo/pull/4146) [#4147](https://github.com/grafana/tempo/pull/4147) (@javiermolinar) +* [CHANGE] Update Go to 1.23.3 [#4146](https://github.com/grafana/tempo/pull/4146) [#4147](https://github.com/grafana/tempo/pull/4147) [#4380](https://github.com/grafana/tempo/pull/4380) (@javiermolinar @mdisibio) * [CHANGE] TraceQL: Add range condition for byte predicates [#4198](https://github.com/grafana/tempo/pull/4198) (@ie-pham) * [CHANGE] Return 422 for TRACE_TOO_LARGE queries [#4160](https://github.com/grafana/tempo/pull/4160) (@zalegrala) * [CHANGE] Upgrade OTEL sdk to reduce allocs [#4243](https://github.com/grafana/tempo/pull/4243) (@joe-elliott) diff --git a/build/tools.mk b/build/tools.mk index ab4e178aca1..888d799799a 100644 --- a/build/tools.mk +++ b/build/tools.mk @@ -12,7 +12,7 @@ TOOL_DIR ?= tools TOOL_CONFIG ?= $(TOOL_DIR)/tools.go TOOLS_IMAGE ?= grafana/tempo-ci-tools -TOOLS_IMAGE_TAG ?= main-a46ac6d +TOOLS_IMAGE_TAG ?= main-e87b8d4 GOTOOLS ?= $(shell cd $(TOOL_DIR) && go list -e -f '{{ .Imports }}' -tags tools |tr -d '[]') diff --git a/cmd/tempo-serverless/cloud-run/go.mod b/cmd/tempo-serverless/cloud-run/go.mod index 10306391119..d093aeadef8 100644 --- a/cmd/tempo-serverless/cloud-run/go.mod +++ b/cmd/tempo-serverless/cloud-run/go.mod @@ -1,6 +1,6 @@ module github.com/grafana/tempo/cmd/tempo-serverless/cloud-run -go 1.23.1 +go 1.23.3 require ( github.com/gogo/protobuf v1.3.2 diff --git a/cmd/tempo-serverless/lambda/go.mod b/cmd/tempo-serverless/lambda/go.mod index 70f1307015e..e4499b30619 100644 --- a/cmd/tempo-serverless/lambda/go.mod +++ b/cmd/tempo-serverless/lambda/go.mod @@ -1,6 +1,6 @@ module github.com/grafana/tempo/cmd/tempo-serverless/lambda -go 1.23.1 +go 1.23.3 require ( github.com/aws/aws-lambda-go v1.28.0 diff --git a/go.mod b/go.mod index 95eb2788492..2c5cf4c6357 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/grafana/tempo -go 1.23.1 +go 1.23.3 require ( cloud.google.com/go/storage v1.41.0