diff --git a/.github/workflows/bump-dependency.yaml b/.github/workflows/bump-dependency.yaml index 217072adc6..b5a6f49234 100644 --- a/.github/workflows/bump-dependency.yaml +++ b/.github/workflows/bump-dependency.yaml @@ -98,7 +98,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 - name: Bump dependency working-directory: go run: | diff --git a/.github/workflows/cd-release.yaml b/.github/workflows/cd-release.yaml index fdf8f2dfed..68221639ba 100644 --- a/.github/workflows/cd-release.yaml +++ b/.github/workflows/cd-release.yaml @@ -47,7 +47,7 @@ jobs: run: | latest=$(git rev-parse HEAD) echo "::set-output name=commitish::$latest" - GO_BUILD_VERSION=1.18.0 go/utils/publishrelease/buildbinaries.sh + GO_BUILD_VERSION=1.19 go/utils/publishrelease/buildbinaries.sh - name: Create Release id: create_release uses: actions/create-release@v1 diff --git a/.github/workflows/ci-bats-unix.yaml b/.github/workflows/ci-bats-unix.yaml index 659003c46d..6c1bf9d3d6 100644 --- a/.github/workflows/ci-bats-unix.yaml +++ b/.github/workflows/ci-bats-unix.yaml @@ -50,7 +50,7 @@ jobs: - name: Setup Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - name: Setup Python 3.x uses: actions/setup-python@v2 diff --git a/.github/workflows/ci-bats-windows.yaml b/.github/workflows/ci-bats-windows.yaml index d089878be1..ae7d343edc 100644 --- a/.github/workflows/ci-bats-windows.yaml +++ b/.github/workflows/ci-bats-windows.yaml @@ -95,7 +95,7 @@ jobs: - name: Setup Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - name: Setup Python 3.x uses: actions/setup-python@v2 diff --git a/.github/workflows/ci-check-repo.yaml b/.github/workflows/ci-check-repo.yaml index 8b2c52dc6a..777a2f650b 100644 --- a/.github/workflows/ci-check-repo.yaml +++ b/.github/workflows/ci-check-repo.yaml @@ -16,7 +16,7 @@ jobs: - name: Setup Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 - uses: actions/checkout@v2 - name: Check all working-directory: ./go diff --git a/.github/workflows/ci-compatibility-tests.yaml b/.github/workflows/ci-compatibility-tests.yaml index d562d3a8c2..699320eef7 100644 --- a/.github/workflows/ci-compatibility-tests.yaml +++ b/.github/workflows/ci-compatibility-tests.yaml @@ -23,7 +23,7 @@ jobs: - name: Setup Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - uses: actions/checkout@v2 - uses: actions/setup-node@v1 diff --git a/.github/workflows/ci-dolt1-format-go-tests.yaml b/.github/workflows/ci-dolt1-format-go-tests.yaml index 0c308d276f..dfe6ffb4c7 100644 --- a/.github/workflows/ci-dolt1-format-go-tests.yaml +++ b/.github/workflows/ci-dolt1-format-go-tests.yaml @@ -26,7 +26,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - uses: actions/checkout@v2 - name: Test All with New Format diff --git a/.github/workflows/ci-format-repo.yaml b/.github/workflows/ci-format-repo.yaml index bbe640302f..2dc1a8ed8e 100644 --- a/.github/workflows/ci-format-repo.yaml +++ b/.github/workflows/ci-format-repo.yaml @@ -17,7 +17,7 @@ jobs: - name: Setup Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 - uses: actions/checkout@v2 with: ref: ${{ github.event.pull_request.head.ref || github.ref }} diff --git a/.github/workflows/ci-go-race-enginetests.yaml b/.github/workflows/ci-go-race-enginetests.yaml index a24f52dac2..a03ded8d9e 100644 --- a/.github/workflows/ci-go-race-enginetests.yaml +++ b/.github/workflows/ci-go-race-enginetests.yaml @@ -23,7 +23,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - uses: actions/checkout@v2 - name: Test All diff --git a/.github/workflows/ci-go-tests.yaml b/.github/workflows/ci-go-tests.yaml index 8bf18e6725..b850f12ea7 100644 --- a/.github/workflows/ci-go-tests.yaml +++ b/.github/workflows/ci-go-tests.yaml @@ -30,7 +30,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - uses: actions/checkout@v2 - name: Test All @@ -82,7 +82,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - uses: actions/checkout@v2 - name: Test All diff --git a/go/go.mod b/go/go.mod index e6fd26393e..3bbf47a78a 100644 --- a/go/go.mod +++ b/go/go.mod @@ -141,4 +141,4 @@ replace ( github.com/oliveagle/jsonpath => github.com/dolthub/jsonpath v0.0.0-20210609232853-d49537a30474 ) -go 1.18 +go 1.19 diff --git a/go/performance/continuous_integration/SysbenchDockerfile b/go/performance/continuous_integration/SysbenchDockerfile index d2fa528aa6..7a5b03268f 100644 --- a/go/performance/continuous_integration/SysbenchDockerfile +++ b/go/performance/continuous_integration/SysbenchDockerfile @@ -1,4 +1,4 @@ -FROM golang:1.18-buster +FROM golang:1.19-buster ENV DEBIAN_FRONTEND=noninteractive diff --git a/integration-tests/DataDumpLoadDockerfile b/integration-tests/DataDumpLoadDockerfile index d6b53faa46..3091bda8b8 100644 --- a/integration-tests/DataDumpLoadDockerfile +++ b/integration-tests/DataDumpLoadDockerfile @@ -19,7 +19,7 @@ RUN apt update -y && \ # install go WORKDIR /root -ENV GO_VERSION=1.18 +ENV GO_VERSION=1.19 ENV GOPATH=$HOME/go ENV PATH=$PATH:$GOPATH/bin ENV PATH=$PATH:$GOPATH/bin:/usr/local/go/bin diff --git a/integration-tests/MySQLDockerfile b/integration-tests/MySQLDockerfile index 544fa002c6..3d28dddae1 100644 --- a/integration-tests/MySQLDockerfile +++ b/integration-tests/MySQLDockerfile @@ -54,7 +54,7 @@ RUN apt update -y && \ # install go WORKDIR /root -ENV GO_VERSION=1.18 +ENV GO_VERSION=1.19 ENV GOPATH=$HOME/go ENV PATH=$PATH:$GOPATH/bin ENV PATH=$PATH:$GOPATH/bin:/usr/local/go/bin diff --git a/integration-tests/ORMDockerfile b/integration-tests/ORMDockerfile index e49f4b4ac1..d31ee33908 100644 --- a/integration-tests/ORMDockerfile +++ b/integration-tests/ORMDockerfile @@ -20,7 +20,7 @@ RUN apt update -y && \ # install go WORKDIR /root -ENV GO_VERSION=1.17.1 +ENV GO_VERSION=1.19 ENV GOPATH=$HOME/go ENV PATH=$PATH:$GOPATH/bin ENV PATH=$PATH:$GOPATH/bin:/usr/local/go/bin