diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml index 870bc844fe..e6b5153929 100644 --- a/.github/workflows/commit.yaml +++ b/.github/workflows/commit.yaml @@ -14,7 +14,7 @@ on: - 'netlify.toml' env: # Update this prior to requiring a higher minor version in go.mod - GO_VERSION: "1.21" # 1.xx == latest patch of 1.xx + GO_VERSION: "1.22" defaults: run: # use bash for all operating systems unless overridden diff --git a/.github/workflows/examples.yaml b/.github/workflows/examples.yaml index 0485dcabdc..218f3ec96c 100644 --- a/.github/workflows/examples.yaml +++ b/.github/workflows/examples.yaml @@ -17,7 +17,7 @@ on: env: EMSDK_VERSION: "3.1.40" - TINYGO_VERSION: "0.30.0" + TINYGO_VERSION: "0.31.0" ZIG_VERSION: "0.11.0" concurrency: @@ -34,9 +34,8 @@ jobs: strategy: matrix: # Use versions consistent with TinyGo. go-version: - # TODO: Add 1.22 when TinyGo supports it. - - "1.20" # Latest Go version supported by TinyGo until its next version. - - "1.19" # Floor Go version of latest TinyGo + - "1.22" + - "1.20" steps: - name: Checkout diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 0e092eb237..732e5c4f38 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -18,8 +18,8 @@ defaults: shell: bash env: # Update this prior to requiring a higher minor version in go.mod - GO_VERSION: "1.21" # 1.xx == latest patch of 1.xx - TINYGO_VERSION: "0.30.0" + GO_VERSION: "1.22" + TINYGO_VERSION: "0.31.0" ZIG_VERSION: "0.11.0" BINARYEN_VERSION: "116" STDLIB_TESTS: "internal/integration_test/stdlibs" @@ -361,7 +361,7 @@ jobs: go test -bench='BenchmarkWasip1/${{ matrix.compiler }}' libsodium: - name: libsodium (${{ matrix.os.name }}, ${{ matrix.arch }}, optimizing) + name: libsodium (${{ matrix.os.name }}, ${{ matrix.os.arch }}, optimizing) runs-on: ${{ matrix.os.version }} strategy: fail-fast: false # don't fail fast as sometimes failures are arch/OS specific diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 198470f142..935bc06d4f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,7 +11,7 @@ on: tags: 'v[0-9]+.[0-9]+.[0-9]+**' # Ex. v0.2.0 v0.2.1-rc2 env: # Update this prior to requiring a higher minor version in go.mod - GO_VERSION: "1.21" # 1.xx == latest patch of 1.xx + GO_VERSION: "1.22" defaults: run: # use bash for all operating systems unless overridden