From 78f5335601cf99117356cf0be87d3047d9e4f714 Mon Sep 17 00:00:00 2001 From: Iceber Gu Date: Fri, 14 Jul 2023 10:37:02 +0800 Subject: [PATCH] ci: fix go-version due to https://github.com/actions/setup-go/pull/382 Signed-off-by: Iceber Gu --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85d532df4..e3ae87183 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: - go-version: 1.20 + go-version: '1.20' - uses: golangci/golangci-lint-action@v3 with: version: v1.53.3 @@ -33,7 +33,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: - go-version: 1.20 + go-version: '1.20' - run: hack/verify-import-aliases.sh - run: hack/verify-vendor.sh - run: hack/verify-codegen.sh @@ -51,7 +51,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: - go-version: 1.20 + go-version: '1.20' - name: Compile run: make all test: @@ -64,7 +64,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: - go-version: 1.20 + go-version: '1.20' - run: make test e2e-test: name: E2e test