From 54bb4b2efdfd22f3da82e6333d35ad8c828e554b Mon Sep 17 00:00:00 2001
From: Hidde Beydals <hello@hidde.co>
Date: Thu, 25 Feb 2021 10:39:46 +0100
Subject: [PATCH] Properly setup Go version in update workflow

To prevent false `go.mod` modifications.

Signed-off-by: Hidde Beydals <hello@hidde.co>
---
 .github/workflows/update.yaml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml
index 99a7a953..abac730f 100644
--- a/.github/workflows/update.yaml
+++ b/.github/workflows/update.yaml
@@ -13,7 +13,10 @@ jobs:
     steps:
       - name: Check out code
         uses: actions/checkout@v2
-
+      - name: Setup Go
+        uses: actions/setup-go@v2
+        with:
+          go-version: 1.16.x
       - name: Update component versions
         id: update
         run: |
-- 
GitLab