From 404c4e45bf920e15c8df003d9476cbdf898b1acc Mon Sep 17 00:00:00 2001 From: Andrew Steurer <94206073+asteurer@users.noreply.github.com> Date: Thu, 24 Sep 2026 15:45:45 -0500 Subject: [PATCH 1/2] chore: bump go pkg version Signed-off-by: Andrew Steurer <94206073+asteurer@users.noreply.github.com> --- crates/go/src/lib.rs | 2 +- crates/go/src/pkg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/go/src/lib.rs b/crates/go/src/lib.rs index b0c60d6d0..1e21969de 100644 --- a/crates/go/src/lib.rs +++ b/crates/go/src/lib.rs @@ -45,7 +45,7 @@ fn remote_pkg(name: &str) -> String { } /// The version of github.com/bytecodealliance/go-pkg that's being used -const REMOTE_PKG_VERSION: &str = "v0.2.3"; +const REMOTE_PKG_VERSION: &str = "v0.3.0"; /// If a user specifies the `pkg_name` flag, the required version for the /// shared remote package isn't recorded. This enables downstream users to retrieve the version programmatically. diff --git a/crates/go/src/pkg b/crates/go/src/pkg index 51f28ec6b..bc88a55a1 160000 --- a/crates/go/src/pkg +++ b/crates/go/src/pkg @@ -1 +1 @@ -Subproject commit 51f28ec6b7e0b8741ecd18f64950c1ccd29eaa2e +Subproject commit bc88a55a1ce0be8bc38556be1da561f64f3b66a5 From 24a3ef481c7b94b37169e308cd904dd296c6f614 Mon Sep 17 00:00:00 2001 From: Andrew Steurer <94206073+asteurer@users.noreply.github.com> Date: Thu, 24 Sep 2026 16:26:12 -0500 Subject: [PATCH 2/2] fix: bump go version Signed-off-by: Andrew Steurer <94206073+asteurer@users.noreply.github.com> --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 18f6cf465..c3465c6a4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -111,7 +111,7 @@ jobs: # macOS/Windows to also get coverage for test-without-a-patched-toolchain. - name: Install Patched Go run: | - curl -OL https://github.com/dicej/go/releases/download/go1.25.5-wasi-on-idle/go-linux-amd64-bootstrap.tbz + curl -OL https://github.com/dicej/go/releases/download/go1.27.1-wasi-on-idle/go-linux-amd64-bootstrap.tbz tar xf go-linux-amd64-bootstrap.tbz echo "$(pwd)/go-linux-amd64-bootstrap/bin" >> $GITHUB_PATH if: matrix.lang == 'go' && matrix.os == 'ubuntu-latest' @@ -119,7 +119,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.25.4 + go-version: 1.27.1 if: matrix.lang == 'go' && matrix.os != 'ubuntu-latest' - name: Setup D