From 2a95f0b6c81dd18ac72624536b4a834cc8a382d2 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Wed, 24 Mar 2021 13:10:30 +0100 Subject: [PATCH] Fix periodic jobs Without this patch, the version of 1.20 is taken in jobs as 1.2. This is a problem, as it breaks all jobs, because there is no file to provision a cluster with kubernetes 1.2 (and we shouldn't do this!) This fixes it by ensuring there is no mangling of the version strings, and therefore the right file is used. --- .github/workflows/periodics-daily.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/periodics-daily.yaml b/.github/workflows/periodics-daily.yaml index 468b79a..b276d1a 100644 --- a/.github/workflows/periodics-daily.yaml +++ b/.github/workflows/periodics-daily.yaml @@ -60,9 +60,9 @@ jobs: strategy: matrix: kubernetes: - - 1.18 - - 1.19 - - 1.20 + - "1.18" + - "1.19" + - "1.20" steps: - uses: actions/checkout@v2 - name: Find go version