Skip to content

chore(deps): update dependency go to v1.26.0#411

Open
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
renovate/go-1.x
Open

chore(deps): update dependency go to v1.26.0#411
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
renovate/go-1.x

Conversation

@renovate-sh-app
Copy link
Contributor

@renovate-sh-app renovate-sh-app bot commented Oct 28, 2025

This PR contains the following updates:

Package Type Update Change
go (source) toolchain minor 1.24.41.26.0

Release Notes

golang/go (go)

v1.26.0

v1.25.7

v1.25.6

v1.25.5

v1.25.4

v1.25.3

v1.25.2

v1.25.1

v1.25.0

v1.24.13

v1.24.12

v1.24.11

v1.24.10

v1.24.9

v1.24.8

v1.24.7

v1.24.6

v1.24.5


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

Need help?

You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.


Note

Medium Risk
Toolchain upgrades can introduce compiler/runtime behavior changes that may break builds or tests even without code changes.

Overview
Bumps the go.mod toolchain directive from go1.24.4 to go1.26.0, so local builds/CI that honor toolchain selection will compile and test with Go 1.26 by default.

Written by Cursor Bugbot for commit 0c97988. This will update automatically on new commits. Configure here.

@renovate-sh-app renovate-sh-app bot requested a review from a team as a code owner October 28, 2025 21:18
@github-project-automation github-project-automation bot moved this to In review in Alerting Oct 28, 2025
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 2 times, most recently from 4a0c666 to 4db8a0b Compare October 30, 2025 18:16
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 2 times, most recently from 86626ec to ccffed0 Compare November 8, 2025 00:15
@renovate-sh-app renovate-sh-app bot changed the title chore(deps): update dependency go to v1.25.3 chore(deps): update dependency go to v1.25.4 Nov 8, 2025
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 2 times, most recently from 425efd1 to 4a8ee7a Compare November 10, 2025 21:16
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 6 times, most recently from 9e8914a to c9a4c48 Compare December 5, 2025 00:05
@renovate-sh-app renovate-sh-app bot changed the title chore(deps): update dependency go to v1.25.4 chore(deps): update dependency go to v1.25.5 Dec 5, 2025
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 6 times, most recently from 9993201 to 454687a Compare December 17, 2025 15:09
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 2 times, most recently from d46708f to 6a17385 Compare December 23, 2025 18:06
go.mod Outdated
go 1.24.0

toolchain go1.24.4
toolchain go1.25.5
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Go workspace version mismatch with module toolchain

The go.mod toolchain is being updated from go1.24.4 to go1.25.5, but go.work still declares go 1.24.4. Previously these were in sync. This version mismatch between the workspace file and module toolchain could cause inconsistent Go toolchain selection depending on whether builds run in workspace mode or not, potentially leading to different behavior or compatibility issues across build environments.

Fix in Cursor Fix in Web

@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 3 times, most recently from 765ff83 to d6efc28 Compare January 26, 2026 09:07
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 3 times, most recently from 185ae59 to 166a04b Compare February 3, 2026 18:10
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 2 times, most recently from 384c594 to 11a9dc7 Compare February 7, 2026 00:07
@renovate-sh-app renovate-sh-app bot changed the title chore(deps): update dependency go to v1.25.6 chore(deps): update dependency go to v1.25.7 Feb 7, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 3 times, most recently from 192e91b to 62802b6 Compare February 13, 2026 01:04
@renovate-sh-app renovate-sh-app bot changed the title chore(deps): update dependency go to v1.25.7 chore(deps): update dependency go to v1.26.0 Feb 13, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 8 times, most recently from b22f130 to 1547fef Compare February 26, 2026 18:05
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go-1.x branch 6 times, most recently from 7797eb5 to a6e94ce Compare March 3, 2026 18:04
Copy link

@cursor cursor bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Bugbot Autofix prepared a fix for the issue found in the latest run.

  • ✅ Fixed: go.work not updated alongside go.mod toolchain bump
    • Added toolchain go1.26.0 to go.work so workspace toolchain selection is aligned with the updated go.mod toolchain.

Create PR

Or push these changes by commenting:

@cursor push eac068383c
Preview (eac068383c)
diff --git a/go.work b/go.work
--- a/go.work
+++ b/go.work
@@ -1,5 +1,7 @@
 go 1.24.4
 
+toolchain go1.26.0
+
 use (
 	.
 	./testing/alerting-gen

go 1.24.0

toolchain go1.24.4
toolchain go1.26.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

go.work not updated alongside go.mod toolchain bump

Low Severity

The toolchain directive in go.mod was bumped from go1.24.4 to go1.26.0, but the go.work file still specifies go 1.24.4 (which matched the old toolchain version) and has no toolchain directive. This inconsistency means the workspace configuration is out of sync with the module's toolchain requirement. While Go's automatic toolchain switching (GOTOOLCHAIN=auto) will likely resolve this at build time, developers using GOTOOLCHAIN=local or inspecting workspace settings will encounter a mismatch.

Fix in Cursor Fix in Web

| datasource     | package | from   | to     |
| -------------- | ------- | ------ | ------ |
| golang-version | go      | 1.24.4 | 1.26.0 |


Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: In review

Development

Successfully merging this pull request may close these issues.

0 participants