From c95ede35c12bd45b50be8ffc840a5e4188099bb5 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Fri, 3 Mar 2023 15:19:28 -0800 Subject: [PATCH] Switch windows CI back to go 1.19.x (#16755) --- .github/workflows/go-lint.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index c47b5665f..514ea6eb2 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -20,8 +20,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.20.x] + go-version: [1.20.x, 1.19.x] os: [ubuntu-latest, windows-latest] + exclude: + - os: ubuntu-latest + go-version: 1.19.x + - os: windows-latest + go-version: 1.20.x steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3