diff --git a/.github/workflows/cd-release.yaml b/.github/workflows/cd-release.yaml index 04379681ba..dcf15abc5e 100644 --- a/.github/workflows/cd-release.yaml +++ b/.github/workflows/cd-release.yaml @@ -76,7 +76,7 @@ jobs: run: | latest=$(git rev-parse HEAD) echo "commitish=$latest" >> $GITHUB_OUTPUT - GO_BUILD_VERSION=1.22 scripts/build_binaries.sh + GO_BUILD_VERSION=1.23.3 scripts/build_binaries.sh - name: Create Release id: create_release uses: dolthub/create-release@v2 diff --git a/go.mod b/go.mod index e88e0e4cdc..259129e7bf 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/dolthub/doltgresql -go 1.22.2 +go 1.23.3 -toolchain go1.22.3 +toolchain go1.23.3 require ( github.com/PuerkitoBio/goquery v1.8.1 diff --git a/testing/PostgresDockerfile b/testing/PostgresDockerfile index a023e7e9bb..cfe075d9d0 100644 --- a/testing/PostgresDockerfile +++ b/testing/PostgresDockerfile @@ -45,7 +45,7 @@ RUN apt update -y && \ # install go WORKDIR /root -ENV GO_VERSION=1.22.1 +ENV GO_VERSION=1.23.3 ENV GOPATH=$HOME/go ENV PATH=$PATH:$GOPATH/bin ENV PATH=$PATH:$GOPATH/bin:/usr/local/go/bin diff --git a/testing/ReplicationTestDockerfile b/testing/ReplicationTestDockerfile index d9c5542ae0..756d76f469 100644 --- a/testing/ReplicationTestDockerfile +++ b/testing/ReplicationTestDockerfile @@ -3,7 +3,7 @@ FROM postgres:16 ENV POSTGRES_PASSWORD=password ENV POSTGRES_USER=postgres -ENV GO_VERSION=1.22.0 +ENV GO_VERSION=1.23.3 # Install Go RUN apt-get update && \