From 6bd25c852b913ab208536ea0a17783251913aac7 Mon Sep 17 00:00:00 2001 From: George Blue Date: Wed, 1 Feb 2023 21:30:42 +0000 Subject: [PATCH] test: update matrix for Go 1.20 (#635) --- .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 f63fec370..ff26235f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,14 +9,14 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: '1.18' + go-version: '1.19' - uses: actions/checkout@v3 - run: go mod tidy && git diff --exit-code go.mod go.sum build: runs-on: ubuntu-latest strategy: matrix: - version: [ '1.18', '1.19' ] + version: [ '1.19', '1.20' ] name: Go ${{ matrix.version }} steps: - uses: actions/setup-go@v3