From 190c05cc24b0150e8874dd23016e38112d7aec6e Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 4 Feb 2023 07:32:13 -0600 Subject: [PATCH] CI fix: Go versions are strings Otherwise Go 1.20 was being treated as Go 1.2. --- .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 aa38b205..bc375e72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - go-version: [1.19, 1.20] + go-version: ["1.19", "1.20"] pg-version: [11, 12, 13, 14, 15, cockroachdb] include: - pg-version: 11