From be372e1d50ed4acac5df8d428b3918d24d4495b6 Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Mon, 20 May 2024 17:14:37 +0900 Subject: [PATCH 1/9] Update go version of go.mod in the root of the repo to 1.22 Signed-off-by: Yoshiki Fujikane --- go.mod | 4 +++- go.sum | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 11247f0280..31cb791344 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/pipe-cd/pipecd -go 1.20 +go 1.22 + +toolchain go1.22.3 require ( cloud.google.com/go/firestore v1.9.0 diff --git a/go.sum b/go.sum index 389a92216f..abb7ce4ed4 100644 --- a/go.sum +++ b/go.sum @@ -376,6 +376,7 @@ github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXi github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= +github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -488,6 +489,7 @@ github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+ github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2 h1:hRGSmZu7j271trc9sneMrpOW7GN5ngLm8YUZIPzf394= +github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= @@ -1127,6 +1129,7 @@ gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= gotest.tools/v3 v3.2.0 h1:I0DwBVMGAx26dttAj1BtJLAkVGncrkkUXfJLC4Flt/I= +gotest.tools/v3 v3.2.0/go.mod h1:Mcr9QNxkg0uMvy/YElmo4SpXgJKWgQvYrT7Kw5RzJ1A= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= From 5a523d5e0472c3f17a6f8de9ddaade9ccd01e51b Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Mon, 20 May 2024 17:18:13 +0900 Subject: [PATCH 2/9] Update go version of the base image of Dockerfiles and go.mod in tools/ to 1.22 - actions-gh-release - actions-plan-preview - codegen Signed-off-by: Yoshiki Fujikane --- tool/actions-gh-release/Dockerfile | 2 +- tool/actions-gh-release/go.mod | 4 +++- tool/actions-gh-release/go.sum | 1 + tool/actions-plan-preview/Dockerfile | 2 +- tool/actions-plan-preview/go.mod | 4 +++- tool/actions-plan-preview/go.sum | 1 + tool/codegen/protoc-gen-auth/go.mod | 4 +++- tool/codegen/protoc-gen-auth/go.sum | 2 ++ 8 files changed, 15 insertions(+), 5 deletions(-) diff --git a/tool/actions-gh-release/Dockerfile b/tool/actions-gh-release/Dockerfile index c0c6d5ddee..29d1a8f9f5 100644 --- a/tool/actions-gh-release/Dockerfile +++ b/tool/actions-gh-release/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.5-alpine3.18 +FROM golang:1.22.3-alpine3.19 RUN apk update && apk add git diff --git a/tool/actions-gh-release/go.mod b/tool/actions-gh-release/go.mod index fa262b5962..71572d3a79 100644 --- a/tool/actions-gh-release/go.mod +++ b/tool/actions-gh-release/go.mod @@ -1,6 +1,8 @@ module github.com/pipe-cd/actions-gh-release -go 1.20 +go 1.22 + +toolchain go1.22.3 require ( github.com/creasty/defaults v1.5.2 diff --git a/tool/actions-gh-release/go.sum b/tool/actions-gh-release/go.sum index 8c08365b5d..02a39a73fd 100644 --- a/tool/actions-gh-release/go.sum +++ b/tool/actions-gh-release/go.sum @@ -12,6 +12,7 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-github/v39 v39.2.0 h1:rNNM311XtPOz5rDdsJXAp2o8F67X9FnROXTvto3aSnQ= github.com/google/go-github/v39 v39.2.0/go.mod h1:C1s8C5aCC9L+JXIYpJM5GYytdX52vC1bLvHEF1IhBrE= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= diff --git a/tool/actions-plan-preview/Dockerfile b/tool/actions-plan-preview/Dockerfile index 3419f7b04b..69e1509775 100644 --- a/tool/actions-plan-preview/Dockerfile +++ b/tool/actions-plan-preview/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.5-alpine3.18 as builder +FROM golang:1.22.3-alpine3.19 as builder WORKDIR /app COPY go.mod go.sum ./ RUN go mod download diff --git a/tool/actions-plan-preview/go.mod b/tool/actions-plan-preview/go.mod index b8efa6b434..8aab69bff7 100644 --- a/tool/actions-plan-preview/go.mod +++ b/tool/actions-plan-preview/go.mod @@ -1,6 +1,8 @@ module github.com/pipe-cd/actions-plan-preview -go 1.20 +go 1.22 + +toolchain go1.22.3 require ( github.com/google/go-github/v36 v36.0.0 diff --git a/tool/actions-plan-preview/go.sum b/tool/actions-plan-preview/go.sum index 499f8eb347..3ee4c2bd1b 100644 --- a/tool/actions-plan-preview/go.sum +++ b/tool/actions-plan-preview/go.sum @@ -8,6 +8,7 @@ github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiu github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-github/v36 v36.0.0 h1:ndCzM616/oijwufI7nBRa+5eZHLldT+4yIB68ib5ogs= github.com/google/go-github/v36 v36.0.0/go.mod h1:LFlKC047IOqiglRGNqNb9s/iAPTnnjtlshm+bxp+kwk= github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk= diff --git a/tool/codegen/protoc-gen-auth/go.mod b/tool/codegen/protoc-gen-auth/go.mod index f4da20bdce..c703cfd3d1 100644 --- a/tool/codegen/protoc-gen-auth/go.mod +++ b/tool/codegen/protoc-gen-auth/go.mod @@ -1,5 +1,7 @@ module github.com/pipe-cd/pipecd/tool/codegen/protoc-gen-auth -go 1.20 +go 1.22 + +toolchain go1.22.3 require google.golang.org/protobuf v1.33.0 diff --git a/tool/codegen/protoc-gen-auth/go.sum b/tool/codegen/protoc-gen-auth/go.sum index f63a45abed..2e26fa55de 100644 --- a/tool/codegen/protoc-gen-auth/go.sum +++ b/tool/codegen/protoc-gen-auth/go.sum @@ -1,4 +1,6 @@ github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= From 4d4adce1a7e89cf27e1aca9fa1bec9a8fa1b406f Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Mon, 20 May 2024 17:44:38 +0900 Subject: [PATCH 3/9] Update go version of Dockerfile in /docs to 1.22 Signed-off-by: Yoshiki Fujikane --- docs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index d3f513ba09..db4ff8a50d 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.13.4-alpine3.10 AS builder +FROM golang:1.22.3-alpine3.19 AS builder COPY main.go . RUN go build -o /server main.go From 5514e45a783c663f6ad611dbdcc53ba0db75f48d Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Mon, 20 May 2024 17:49:49 +0900 Subject: [PATCH 4/9] Update go version in docs document Signed-off-by: Yoshiki Fujikane --- cmd/pipecd/README.md | 2 +- cmd/piped/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/pipecd/README.md b/cmd/pipecd/README.md index b84450d04d..9e78bdc79a 100644 --- a/cmd/pipecd/README.md +++ b/cmd/pipecd/README.md @@ -3,7 +3,7 @@ ## Prerequisites -- [Go 1.19 or later](https://go.dev/) +- [Go 1.22 or later](https://go.dev/) - [Docker](https://www.docker.com/) - [kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) (If you want to run Control Plane locally) - [helm 3.8](https://helm.sh/docs/intro/install/) (If you want to run Control Plane locally) diff --git a/cmd/piped/README.md b/cmd/piped/README.md index 8224714269..3c6e01208c 100644 --- a/cmd/piped/README.md +++ b/cmd/piped/README.md @@ -3,7 +3,7 @@ ## Prerequisites -- [Go 1.19 or later](https://go.dev/) +- [Go 1.22 or later](https://go.dev/) ## Repositories - [pipecd](https://github.com/pipe-cd/pipecd): contains all source code and documentation of PipeCD project. From be1f6863e6208dfc9dfff5dbefc2eb7dfcaf5f45 Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Mon, 20 May 2024 17:57:11 +0900 Subject: [PATCH 5/9] Update env.GO_VERSION in github actions workflow definitions to 1.22.3(stable version) Signed-off-by: Yoshiki Fujikane --- .github/workflows/build.yaml | 2 +- .github/workflows/lint.yaml | 2 +- .github/workflows/publish_binary.yaml | 2 +- .github/workflows/publish_image_chart.yaml | 2 +- .github/workflows/test.yaml | 2 +- .github/workflows/test_tool.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 572c3afa7a..8f10d06e54 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,7 +11,7 @@ on: - master env: - GO_VERSION: 1.20.5 + GO_VERSION: 1.22.3 NODE_VERSION: 16.13.0 HELM_VERSION: 3.8.2 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 0bc6a27910..957159e3d5 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -9,7 +9,7 @@ on: - master env: - GO_VERSION: 1.20.5 + GO_VERSION: 1.22.3 NODE_VERSION: 16.13.0 GOLANGCI_LINT_VERSION: v1.46.2 diff --git a/.github/workflows/publish_binary.yaml b/.github/workflows/publish_binary.yaml index 23022d591c..455ede9cd3 100644 --- a/.github/workflows/publish_binary.yaml +++ b/.github/workflows/publish_binary.yaml @@ -6,7 +6,7 @@ on: - 'v*' env: - GO_VERSION: 1.20.5 + GO_VERSION: 1.22.3 jobs: gh_release: diff --git a/.github/workflows/publish_image_chart.yaml b/.github/workflows/publish_image_chart.yaml index 74368866d2..cd7c9ee326 100644 --- a/.github/workflows/publish_image_chart.yaml +++ b/.github/workflows/publish_image_chart.yaml @@ -11,7 +11,7 @@ env: GHCR: ghcr.io GCR: gcr.io HELM_VERSION: 3.8.2 - GO_VERSION: 1.20.5 + GO_VERSION: 1.22.3 NODE_VERSION: 16.13.0 jobs: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 15aabbe4c6..96040af3a9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,7 @@ on: - master env: - GO_VERSION: 1.20.5 + GO_VERSION: 1.22.3 NODE_VERSION: 16.13.0 jobs: diff --git a/.github/workflows/test_tool.yaml b/.github/workflows/test_tool.yaml index f508a6ff3a..11bd64c206 100644 --- a/.github/workflows/test_tool.yaml +++ b/.github/workflows/test_tool.yaml @@ -13,7 +13,7 @@ on: - tool/** env: - GO_VERSION: 1.20.5 + GO_VERSION: 1.22.3 NODE_VERSION: 16.13.0 jobs: From ce2213059cba574eabbc5c94c799d7386e5d9d59 Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Fri, 14 Jun 2024 12:46:45 +0900 Subject: [PATCH 6/9] Update go version of go.mod in the root of the repo to 1.22.4 Signed-off-by: Yoshiki Fujikane --- go.mod | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 31cb791344..8b2bd5c207 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/pipe-cd/pipecd -go 1.22 - -toolchain go1.22.3 +go 1.22.4 require ( cloud.google.com/go/firestore v1.9.0 From a3969c8d51c5ab528d63dc8728a2ea37095f9132 Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Fri, 14 Jun 2024 13:59:01 +0900 Subject: [PATCH 7/9] Update go version of the base image of Dockerfiles and go.mod in tools/ to 1.22.4 Signed-off-by: Yoshiki Fujikane --- tool/actions-gh-release/Dockerfile | 2 +- tool/actions-gh-release/go.mod | 4 +--- tool/actions-plan-preview/Dockerfile | 2 +- tool/actions-plan-preview/go.mod | 4 +--- tool/codegen/protoc-gen-auth/go.mod | 4 +--- 5 files changed, 5 insertions(+), 11 deletions(-) diff --git a/tool/actions-gh-release/Dockerfile b/tool/actions-gh-release/Dockerfile index 29d1a8f9f5..055e3b1bf1 100644 --- a/tool/actions-gh-release/Dockerfile +++ b/tool/actions-gh-release/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.3-alpine3.19 +FROM golang:1.22.4-alpine3.20 RUN apk update && apk add git diff --git a/tool/actions-gh-release/go.mod b/tool/actions-gh-release/go.mod index 71572d3a79..b773e80d34 100644 --- a/tool/actions-gh-release/go.mod +++ b/tool/actions-gh-release/go.mod @@ -1,8 +1,6 @@ module github.com/pipe-cd/actions-gh-release -go 1.22 - -toolchain go1.22.3 +go 1.22.4 require ( github.com/creasty/defaults v1.5.2 diff --git a/tool/actions-plan-preview/Dockerfile b/tool/actions-plan-preview/Dockerfile index 69e1509775..3a9232494a 100644 --- a/tool/actions-plan-preview/Dockerfile +++ b/tool/actions-plan-preview/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.3-alpine3.19 as builder +FROM golang:1.22.4-alpine3.20 as builder WORKDIR /app COPY go.mod go.sum ./ RUN go mod download diff --git a/tool/actions-plan-preview/go.mod b/tool/actions-plan-preview/go.mod index 8aab69bff7..c3acdb1fc6 100644 --- a/tool/actions-plan-preview/go.mod +++ b/tool/actions-plan-preview/go.mod @@ -1,8 +1,6 @@ module github.com/pipe-cd/actions-plan-preview -go 1.22 - -toolchain go1.22.3 +go 1.22.4 require ( github.com/google/go-github/v36 v36.0.0 diff --git a/tool/codegen/protoc-gen-auth/go.mod b/tool/codegen/protoc-gen-auth/go.mod index c703cfd3d1..349ab3550b 100644 --- a/tool/codegen/protoc-gen-auth/go.mod +++ b/tool/codegen/protoc-gen-auth/go.mod @@ -1,7 +1,5 @@ module github.com/pipe-cd/pipecd/tool/codegen/protoc-gen-auth -go 1.22 - -toolchain go1.22.3 +go 1.22.4 require google.golang.org/protobuf v1.33.0 From b227e4ee69575e27079894df77f3038547472aef Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Fri, 14 Jun 2024 14:00:56 +0900 Subject: [PATCH 8/9] Update go version of Dockerfile in /docs to 1.22.4 Signed-off-by: Yoshiki Fujikane --- docs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index db4ff8a50d..fc6f561318 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.3-alpine3.19 AS builder +FROM golang:1.22.4-alpine3.20 AS builder COPY main.go . RUN go build -o /server main.go From f2322e7c0a8777d3e1efd6afcd7d0839babbe045 Mon Sep 17 00:00:00 2001 From: Yoshiki Fujikane Date: Fri, 14 Jun 2024 14:02:46 +0900 Subject: [PATCH 9/9] Update env.GO_VERSION in github actions workflow definitions to 1.22.4 Signed-off-by: Yoshiki Fujikane --- .github/workflows/build.yaml | 2 +- .github/workflows/lint.yaml | 2 +- .github/workflows/publish_binary.yaml | 2 +- .github/workflows/publish_image_chart.yaml | 2 +- .github/workflows/test.yaml | 2 +- .github/workflows/test_tool.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8f10d06e54..4be08ed4f4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,7 +11,7 @@ on: - master env: - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.4 NODE_VERSION: 16.13.0 HELM_VERSION: 3.8.2 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 957159e3d5..d0232c9937 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -9,7 +9,7 @@ on: - master env: - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.4 NODE_VERSION: 16.13.0 GOLANGCI_LINT_VERSION: v1.46.2 diff --git a/.github/workflows/publish_binary.yaml b/.github/workflows/publish_binary.yaml index 455ede9cd3..f490c01cbe 100644 --- a/.github/workflows/publish_binary.yaml +++ b/.github/workflows/publish_binary.yaml @@ -6,7 +6,7 @@ on: - 'v*' env: - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.4 jobs: gh_release: diff --git a/.github/workflows/publish_image_chart.yaml b/.github/workflows/publish_image_chart.yaml index cd7c9ee326..32072602d4 100644 --- a/.github/workflows/publish_image_chart.yaml +++ b/.github/workflows/publish_image_chart.yaml @@ -11,7 +11,7 @@ env: GHCR: ghcr.io GCR: gcr.io HELM_VERSION: 3.8.2 - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.4 NODE_VERSION: 16.13.0 jobs: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 96040af3a9..a3da2c1d96 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,7 @@ on: - master env: - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.4 NODE_VERSION: 16.13.0 jobs: diff --git a/.github/workflows/test_tool.yaml b/.github/workflows/test_tool.yaml index 11bd64c206..9a1bbd97c7 100644 --- a/.github/workflows/test_tool.yaml +++ b/.github/workflows/test_tool.yaml @@ -13,7 +13,7 @@ on: - tool/** env: - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.4 NODE_VERSION: 16.13.0 jobs: