From 4c81bade061fa7f12a8f324fb111df026787b801 Mon Sep 17 00:00:00 2001 From: Tom Siewert Date: Fri, 6 May 2022 12:59:41 +0200 Subject: [PATCH 1/2] ci: go 1.18 and arm is not working Signed-off-by: Tom Siewert --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 246d7e7023..2a50edf8f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18.x + go-version: 1.17.x - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 From 782850388047db4b7d27f90a378f0f852772f713 Mon Sep 17 00:00:00 2001 From: Tom Siewert Date: Fri, 6 May 2022 13:01:03 +0200 Subject: [PATCH 2/2] ci: add windows and macos to tests Signed-off-by: Tom Siewert --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bbbe16c7ad..8bfd3b4551 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,8 +5,8 @@ jobs: name: Test strategy: matrix: - go-version: [1.17.x, 1.18.x] - platform: [ubuntu-latest] + go-version: [1.17.x] + platform: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{matrix.platform}} steps: - name: Set up Go ${{matrix.go-version}}