From 0acb4370e09367f10b980c7afc6019bbf4ecbd56 Mon Sep 17 00:00:00 2001 From: Chris Darroch Date: Fri, 3 Jul 2026 15:29:59 -0400 Subject: [PATCH] .github/workflows/ci.yml: update Go versions Because we aim to build and test against only supported versions of Go, we upgrade our GitHub Actions CI workflows to test against Go versions 1.26 and 1.25. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6d9794..feaa262 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: name: Default build strategy: matrix: - go: ['1.20.x', '1.21.x'] + go: ['1.25.x', '1.26.x'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v7