From 1f9f178a579419e24c77e986f66b81fae345afaa Mon Sep 17 00:00:00 2001 From: Andrei Aaron Date: Fri, 17 Feb 2023 20:02:30 +0200 Subject: [PATCH] ci(golang): fix syncing build image golang 1.20 (#1205) Since the matrix values were unquoted, the logic reading the yaml considered them numbers Signed-off-by: Andrei Aaron --- .github/workflows/sync-3rdparty-images.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-3rdparty-images.yaml b/.github/workflows/sync-3rdparty-images.yaml index caf7624e..a5121e30 100644 --- a/.github/workflows/sync-3rdparty-images.yaml +++ b/.github/workflows/sync-3rdparty-images.yaml @@ -17,9 +17,9 @@ jobs: strategy: matrix: golang_version: - - 1.18 - - 1.19 - - 1.20 + - "1.18" + - "1.19" + - "1.20" runs-on: ubuntu-latest steps: - name: Log in to GitHub Docker Registry