From d01242c418346b015471185278771d1937c6edd4 Mon Sep 17 00:00:00 2001 From: joil Date: Fri, 13 Oct 2023 15:36:05 +0800 Subject: [PATCH 1/4] fix: actions --- .github/workflows/go-fmt.yml | 2 +- .github/workflows/go.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/integration_test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-fmt.yml b/.github/workflows/go-fmt.yml index edad54b..95a1adc 100644 --- a/.github/workflows/go-fmt.yml +++ b/.github/workflows/go-fmt.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.1' + go-version: '>=1.21.0-rc.3' - name: Install goimports run: go install golang.org/x/tools/cmd/goimports@latest diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e8443a8..141a095 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '1.21.1' + go-version: '1.21.0-rc.3' - name: Build run: go build -v ./... diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index e60b7d4..f9b059f 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: '1.21.1' + go-version: '1.21.0-rc.3' - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 0f6d589..ee520eb 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: '1.21.1' + go-version: '1.21.0-rc.3' - name: Test run: sudo sh ./script/integrate_test.sh \ No newline at end of file From f71a8768035677557e728152834d8d0496dab214 Mon Sep 17 00:00:00 2001 From: joil Date: Fri, 13 Oct 2023 15:43:20 +0800 Subject: [PATCH 2/4] fix: actions --- .github/workflows/go-fmt.yml | 2 +- .github/workflows/integration_test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-fmt.yml b/.github/workflows/go-fmt.yml index 95a1adc..200a288 100644 --- a/.github/workflows/go-fmt.yml +++ b/.github/workflows/go-fmt.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '>=1.21.0-rc.3' + go-version: '1.21.0-rc.3' - name: Install goimports run: go install golang.org/x/tools/cmd/goimports@latest diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index ee520eb..8dd82d8 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: '1.21.0-rc.3' From ef7fe3e5aef9024ef5c6ff00c3b4c865ee391658 Mon Sep 17 00:00:00 2001 From: joil Date: Fri, 13 Oct 2023 15:53:10 +0800 Subject: [PATCH 3/4] fix: actions --- .golangci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 00126cc..56b2f11 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -13,6 +13,6 @@ # limitations under the License. run: - go: '1.21' + go: '1.21.0-rc.3' skip-dirs: - .idea \ No newline at end of file From 733a01af6a35019f3ac47c17b7b260691f8164ad Mon Sep 17 00:00:00 2001 From: joil Date: Fri, 13 Oct 2023 16:03:20 +0800 Subject: [PATCH 4/4] fix: actions --- .github/workflows/go-fmt.yml | 2 +- .github/workflows/go.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/integration_test.yml | 2 +- .golangci.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go-fmt.yml b/.github/workflows/go-fmt.yml index 200a288..2124e6a 100644 --- a/.github/workflows/go-fmt.yml +++ b/.github/workflows/go-fmt.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.3' + go-version: '1.21.0' - name: Install goimports run: go install golang.org/x/tools/cmd/goimports@latest diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 141a095..22b4d61 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.3' + go-version: '1.21.0' - name: Build run: go build -v ./... diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index f9b059f..d4fd7c4 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.3' + go-version: '1.21.0' - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 8dd82d8..15d10a3 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '1.21.0-rc.3' + go-version: '1.21.0' - name: Test run: sudo sh ./script/integrate_test.sh \ No newline at end of file diff --git a/.golangci.yml b/.golangci.yml index 56b2f11..678b39c 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -13,6 +13,6 @@ # limitations under the License. run: - go: '1.21.0-rc.3' + go: '1.21.0' skip-dirs: - .idea \ No newline at end of file