diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fa78b97..febd3da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ env: # go needs absolute directories, using the $HOME variable doesn't work here. GOCACHE: /home/runner/work/go/pkg/build GOPATH: /home/runner/work/go - GO_VERSION: 1.21 + GO_VERSION: 1.22.3 jobs: ######################## diff --git a/Dockerfile-wasm b/Dockerfile-wasm index 1fd4098..fdd4e01 100644 --- a/Dockerfile-wasm +++ b/Dockerfile-wasm @@ -1,5 +1,5 @@ -#Get golang 1.21 as a base image -FROM golang:1.21 as builder +#Get golang 1.22.3 as a base image +FROM golang:1.22.3 as builder #Define the working directory in the container WORKDIR /app diff --git a/RELEASE.md b/RELEASE.md index 96f4178..cd552d0 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -6,7 +6,7 @@ This document describes the steps needed to release a new version of LNC binarie 1. Android Studio with Android SDK (API level 16 or newer) 2. Xcode (latest version) -3. Go v1.21.0 or newer +3. Go v1.22.3 or newer 4. gomobile (https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile) 5. javac version 1.7 or higher (Included in Java Development Kit 7+) diff --git a/go.mod b/go.mod index 62e1b37..2bb01fa 100644 --- a/go.mod +++ b/go.mod @@ -171,4 +171,4 @@ require ( sigs.k8s.io/yaml v1.2.0 // indirect ) -go 1.21 +go 1.22.3