From 1e923c616a2c74ef58de840f0cf7b966e0a184d2 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Wed, 16 Feb 2022 14:13:19 +0100 Subject: [PATCH] tests: stop testing with Go 1.14 Go 1.14.x is no longer supported upstream and doesn't have some newer functionality like testing.T.TempDir. Core klog may still work with Go < 1.15, it just doesn't get tested anymore. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 38793a37..841ee58c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.14, 1.15, 1.16, 1.17] + go-version: [1.15, 1.16, 1.17] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: