From 9d088969a8a7e49bf17018dfc65b11998c677ce7 Mon Sep 17 00:00:00 2001 From: Doug Fawley Date: Tue, 22 Mar 2022 11:28:17 -0700 Subject: [PATCH] github: update to test with Go 1.18 (#5262) --- .github/workflows/testing.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index b687fdb3dc3..ac2bcdfae75 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.15 + go-version: 1.18 - name: Checkout repo uses: actions/checkout@v2 @@ -43,23 +43,26 @@ jobs: matrix: include: - type: vet+tests - goversion: 1.17 + goversion: 1.18 - type: tests - goversion: 1.17 + goversion: 1.18 testflags: -race - type: extras - goversion: 1.17 + goversion: 1.18 - type: tests - goversion: 1.17 + goversion: 1.18 goarch: 386 - type: tests - goversion: 1.17 + goversion: 1.18 goarch: arm64 + - type: tests + goversion: 1.17 + - type: tests goversion: 1.16