From 0a114c50c39b72aeb8429566fd86bfb51d0cbc1d Mon Sep 17 00:00:00 2001 From: Lyndon-Li Date: Wed, 18 Jan 2023 16:53:59 +0800 Subject: [PATCH] bump up to golang 1.18.10 Signed-off-by: Lyndon-Li --- .github/workflows/crds-verify-kind.yaml | 2 +- .github/workflows/e2e-test-kind.yaml | 4 ++-- .github/workflows/pr-ci-check.yml | 2 +- .github/workflows/push.yml | 2 +- Dockerfile | 2 +- Tiltfile | 2 +- changelogs/unreleased/5780-Lyndon-Li | 1 + hack/build-image/Dockerfile | 2 +- 8 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 changelogs/unreleased/5780-Lyndon-Li diff --git a/.github/workflows/crds-verify-kind.yaml b/.github/workflows/crds-verify-kind.yaml index 0a4ab74af0..049b77abc5 100644 --- a/.github/workflows/crds-verify-kind.yaml +++ b/.github/workflows/crds-verify-kind.yaml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18.8 + go-version: 1.18.10 id: go # Look for a CLI that's made for this PR - name: Fetch built CLI diff --git a/.github/workflows/e2e-test-kind.yaml b/.github/workflows/e2e-test-kind.yaml index 13987315f4..64621f04c5 100644 --- a/.github/workflows/e2e-test-kind.yaml +++ b/.github/workflows/e2e-test-kind.yaml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18.8 + go-version: 1.18.10 id: go # Look for a CLI that's made for this PR - name: Fetch built CLI @@ -72,7 +72,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18.8 + go-version: 1.18.10 id: go - name: Check out the code uses: actions/checkout@v2 diff --git a/.github/workflows/pr-ci-check.yml b/.github/workflows/pr-ci-check.yml index fbc0616bb4..50f871b920 100644 --- a/.github/workflows/pr-ci-check.yml +++ b/.github/workflows/pr-ci-check.yml @@ -8,7 +8,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18.8 + go-version: 1.18.10 id: go - name: Check out the code uses: actions/checkout@v2 diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 35407e14b7..2a89002180 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18.8 + go-version: 1.18.10 id: go - uses: actions/checkout@v3 diff --git a/Dockerfile b/Dockerfile index f8592162ed..d372bda1e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # Velero binary build section -FROM --platform=$BUILDPLATFORM golang:1.18.8 as velero-builder +FROM --platform=$BUILDPLATFORM golang:1.18.10 as velero-builder ARG GOPROXY ARG BIN diff --git a/Tiltfile b/Tiltfile index fb65961dc2..02fae24634 100644 --- a/Tiltfile +++ b/Tiltfile @@ -50,7 +50,7 @@ git_sha = str(local("git rev-parse HEAD", quiet = True, echo_off = True)).strip( tilt_helper_dockerfile_header = """ # Tilt image -FROM golang:1.18.8 as tilt-helper +FROM golang:1.18.10 as tilt-helper # Support live reloading with Tilt RUN wget --output-document /restart.sh --quiet https://github.com/raw/windmilleng/rerun-process-wrapper/master/restart.sh && \ diff --git a/changelogs/unreleased/5780-Lyndon-Li b/changelogs/unreleased/5780-Lyndon-Li new file mode 100644 index 0000000000..92a7d569e0 --- /dev/null +++ b/changelogs/unreleased/5780-Lyndon-Li @@ -0,0 +1 @@ +Bump up golang to 1.18.10 for Velero \ No newline at end of file diff --git a/hack/build-image/Dockerfile b/hack/build-image/Dockerfile index ada79dbc21..159b0f6320 100644 --- a/hack/build-image/Dockerfile +++ b/hack/build-image/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM --platform=linux/amd64 golang:1.18.8-bullseye +FROM --platform=linux/amd64 golang:1.18.10-bullseye ARG GOPROXY