From b1f7754ccd772991392f102974d7b47eb8dc0f35 Mon Sep 17 00:00:00 2001
From: Markus Wüstenberg
Date: Thu, 4 May 2023 09:46:20 +0200
Subject: Test with Go 1.20 in CI

---
 .github/workflows/ci.yml | 1 +
 1 file changed, 1 insertion(+)

(limited to '.github/workflows')

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7ca142f..3036917 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,6 +24,7 @@ jobs:
           - 1.17
           - 1.18
           - 1.19
+          - 1.20
 
     steps:
       - name: Checkout
-- 
cgit 1.4.1


From f26f56cc56fef8d90433917f3628acc946e2d44e Mon Sep 17 00:00:00 2001
From: Markus Wüstenberg
Date: Thu, 4 May 2023 09:48:27 +0200
Subject: Make version numbers strings in yaml

---
 .github/workflows/ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

(limited to '.github/workflows')

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3036917..17d8878 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,11 +20,11 @@ jobs:
     strategy:
       matrix:
         go:
-          - 1.16
-          - 1.17
-          - 1.18
-          - 1.19
-          - 1.20
+          - "1.16"
+          - "1.17"
+          - "1.18"
+          - "1.19"
+          - "1.20"
 
     steps:
       - name: Checkout
-- 
cgit 1.4.1