Skip to content

Commit 39a12e2

Browse files
committed
fix(tinygo): update Go version from 1.25.0 to 1.25.3
Go 1.25.0 does not exist, causing 404 errors when downloading on all platforms: Error: GET returned 404 Not Found URL: https://go.dev/dl/go1.25.0.windows-amd64.tar.gz Updated to Go 1.25.3 which is the current latest stable release. This affects TinyGo's hermetic Go SDK download for all platforms.
1 parent 2682005 commit 39a12e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolchains/tinygo_toolchain.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _detect_host_platform(repository_ctx):
3232
def _download_go(repository_ctx, version, platform):
3333
"""Download hermetic Go SDK for TinyGo to use"""
3434

35-
go_version = "1.25.0" # Updated for TinyGo 0.39.0 support
35+
go_version = "1.25.3" # Latest stable Go version (1.25.0 doesn't exist)
3636

3737
# Map platform to Go's naming convention
3838
go_platform_map = {

0 commit comments

Comments
 (0)