From 30323a78e47bc7e06b1c057f6dc9f380c2c4deb0 Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Sun, 11 Feb 2024 11:55:01 -0800 Subject: [PATCH] ci: Test with Go 1.22 (#86) Add Go 1.22 to the matrix, leave 1.20 in for now. When we delete 1.20, we should bump the go.mod to 1.21. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cadbd0e..7941347 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,16 +16,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: ['1.21.x', '1.20.x'] + go-version: ['1.22.x', '1.21.x', '1.20.x'] arch: ['amd64', '386', 'arm64'] os: ['ubuntu-latest'] include: - os: 'macos-latest' arch: 'amd64' - go-version: '1.21.x' + go-version: '1.22.x' - os: 'windows-latest' arch: 'amd64' - go-version: '1.21.x' + go-version: '1.22.x' steps: - name: Checkout code