From 4fd265bfd78e173fb472b3772f88150fb1ac428b Mon Sep 17 00:00:00 2001 From: Andrea Panattoni Date: Wed, 17 Aug 2022 11:43:18 +0200 Subject: [PATCH] Stick with go <1.19 Go 1.19 has different rules in `gofmt` and may lead to broken CI builds. Signed-off-by: Andrea Panattoni --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1a97a852dc..3f6c863769 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Go 1.18 uses: actions/setup-go@v3 with: - go-version: '>=1.18.2' + go-version: 1.18.2 - name: Check out code into the Go module directory uses: actions/checkout@v2