From fa9ab5dc416e39a3b90e898e8798862e1d1c9375 Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Mon, 20 Apr 2020 05:47:33 +0300 Subject: [PATCH] Use latest patch version for GO in tests --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 75c1567228..f9855c5d33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ os: - osx go: # 1.12 is no longer supported by apimachinery; we recommend 1.13 - - "1.13" - - "1.14" + - 1.13.x + - 1.14.x go_import_path: k8s.io/kops @@ -16,11 +16,11 @@ jobs: # Exclude GO 1.14 for OSX until it becomes the default because of limited availability exclude: - os: osx - go: "1.14" + go: 1.14.x include: - name: Verify os: linux - go: "1.13" + go: 1.13.x script: - GOPROXY=https://proxy.golang.org make travis-ci