From 44971c92063c519550e0a28bfa1016c3b48ddc5f Mon Sep 17 00:00:00 2001 From: Chris Darroch Date: Fri, 3 Jul 2026 15:50:54 -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