From 073f8cdcb5dc6b20bb31a25b6db5291a2e3600b2 Mon Sep 17 00:00:00 2001 From: Evan Huus Date: Tue, 20 Feb 2024 21:41:31 -0500 Subject: [PATCH] Add go 1.22 to CI It's the latest version, several years newer than the version we were previously testing, and I expect it to be the one shipped with the next Ubuntu LTS so it's a good one to test. Keep 1.18 around as it's the version shipped with the *previous* Ubuntu LTS and so is worth testing as long as it's supported. --- .github/workflows/golang-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/golang-ci.yml b/.github/workflows/golang-ci.yml index 23d1a7c..18efe73 100644 --- a/.github/workflows/golang-ci.yml +++ b/.github/workflows/golang-ci.yml @@ -7,7 +7,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.13, 1.18] + go-version: + - 1.13 + - 1.18 + - 1.22 steps: - uses: actions/checkout@v3