From 75615b370d31cc55ebb1c9101033d4ad27f6a5b9 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 19 Apr 2023 17:14:30 +0000 Subject: [PATCH] more recent go versions --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d34512..64423b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,11 @@ jobs: strategy: matrix: - go: ["1.16.x", "1.17.x"] + # Test on one "earliest" Go as well as the latest two major Go + # versions. If some change requires bumping the "earliest" Go versiion, + # that's fine - just include that in the commit description so that + # users are aware. + go: ["1.16.x", "1.19.x", "1.20.x"] steps: - uses: actions/checkout@v2