From bc4a9b43702694bd0143b8c8f21f07ccafae8e81 Mon Sep 17 00:00:00 2001 From: Alex Flint Date: Sun, 2 Oct 2022 12:43:36 -0700 Subject: [PATCH 1/3] update golang versions used in CI --- .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 3dbb91d..789916d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.13', '1.14', '1.15', '1.16'] + go: ['1.17', '1.18', '1.19', 'latest'] steps: - id: go From de2dbbd1812ce157f85f8e92c87c0788a5332259 Mon Sep 17 00:00:00 2001 From: Alex Flint Date: Sun, 2 Oct 2022 12:48:00 -0700 Subject: [PATCH 2/3] use empty string for "latest" --- .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 789916d..88e9d21 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.17', '1.18', '1.19', 'latest'] + go: ['1.17', '1.18', '1.19', ''] steps: - id: go From 706bcb4ea6a42cf5a55ca089dcd1e678a2bb1f52 Mon Sep 17 00:00:00 2001 From: Alex Flint Date: Sun, 2 Oct 2022 12:50:21 -0700 Subject: [PATCH 3/3] update to latest version of the setup-go github action --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 88e9d21..98acdd6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,12 +15,12 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.17', '1.18', '1.19', ''] + go: ['1.17', '1.18', '1.19'] steps: - id: go name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }}