From f389d4cc58f3abac515fc16158c87196efb69dc0 Mon Sep 17 00:00:00 2001 From: Florent Poinsard Date: Tue, 19 Nov 2024 13:13:26 -0600 Subject: [PATCH] Bump go version to 1.23.3 Signed-off-by: Florent Poinsard --- .buildkite/pipeline.yml | 2 +- .github/workflows/integration-test.yaml | 2 +- .github/workflows/make-generate-and-diff.yaml | 2 +- .github/workflows/unit-test.yaml | 2 +- .github/workflows/upgrade-vitess-dependency.yaml | 2 +- build/Dockerfile.release | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 163d8372..cbd6fdd5 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -2,7 +2,7 @@ agents: queue: "public" env: - GO_VERSION_FILE: "go1.23.2.linux-amd64.tar.gz" + GO_VERSION_FILE: "go1.23.3.linux-amd64.tar.gz" # Mount the docker.sock as to the docker container, so that we are able to # run docker build command and kind is spawned as a sibling container. diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index be54981b..f457a393 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.23.2 + go-version: 1.23.3 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/make-generate-and-diff.yaml b/.github/workflows/make-generate-and-diff.yaml index 95f81b01..b07a74d7 100644 --- a/.github/workflows/make-generate-and-diff.yaml +++ b/.github/workflows/make-generate-and-diff.yaml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.23.2 + go-version: 1.23.3 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index f68bb176..e52430ad 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.23.2 + go-version: 1.23.3 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/upgrade-vitess-dependency.yaml b/.github/workflows/upgrade-vitess-dependency.yaml index b2e43184..66f88f59 100644 --- a/.github/workflows/upgrade-vitess-dependency.yaml +++ b/.github/workflows/upgrade-vitess-dependency.yaml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.23.2 + go-version: 1.23.3 - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/build/Dockerfile.release b/build/Dockerfile.release index ce3cbdac..dda8cdcb 100755 --- a/build/Dockerfile.release +++ b/build/Dockerfile.release @@ -11,7 +11,7 @@ # without messing up file permissions, since the Docker container doesn't run as # your actual user. -FROM golang:1.23.2 AS build +FROM golang:1.23.3 AS build ENV GO111MODULE=on WORKDIR /go/src/planetscale.dev/vitess-operator