From 6d9d35090304c4a311a93de6968777e9c00d67a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Mengu=C3=A9?= Date: Tue, 16 May 2023 16:56:37 +0200 Subject: [PATCH] GitHub CI: fix Go version Fix Go version in YAML: use quotes to mark <1.20> as string instead of being interpreted as float as <1.2>. --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4e6d5c2e..73a31a5c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go 1.20 uses: actions/setup-go@v4 with: - go-version: 1.20 + go-version: '1.20' id: go - name: Get dependencies