From 7bf2c1efe4830f07de95eef5690f5ed4da25f45a Mon Sep 17 00:00:00 2001 From: Brian Shore Date: Mon, 2 Oct 2023 10:52:46 -0700 Subject: [PATCH] Set minimum version to go1.18 This codebase now uses type `any`, introduced in go1.18, so the minimum Go version for testing must be updated to match. --- .github/workflows/test-and-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 5dc0d18..538f434 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -31,7 +31,7 @@ jobs: strategy: matrix: go-version: - - '1.14' # oldest supported; named in go.mod + - '1.18' # oldest supported; named in go.mod - 'oldstable' - 'stable' env: