From 9cb751b8c795ec3b02db593a4e4eeaac1dc93da8 Mon Sep 17 00:00:00 2001 From: Rob Shakir Date: Thu, 25 Apr 2024 14:14:03 -0700 Subject: [PATCH] Remove support for go 1.18. (#968) * (M) .github/workflows/go.yml - Remove testing support for go 1.18 -- these tests are failing based on dependencies. Our contract here is to support -3 versions, so this is in-line with expecations of our consumers. --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5a5fe020..a37b77fc 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.18', '1.19', '1.20', '1.x'] + go: ['1.19', '1.20', '1.21', '1.22', '1.x'] steps: - name: Install protobuf