From 3c56908297b4679921acbf247604c30edc416e00 Mon Sep 17 00:00:00 2001 From: Grzegorz Rozdzialik Date: Sun, 26 Feb 2023 11:10:48 +0100 Subject: [PATCH] chore: remove go 1.16 from CI shfmt used in integration tests requires go 1.17. The integration tests are failing [0] because of that. [0]: https://github.com/Gelio/go-global-update/actions/runs/4274471940/jobs/7441119567 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3193667..6d8eb2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: build-and-test: strategy: matrix: - go-version: ["1.16", "1.17", "1.18", "1.19", "1.20"] + go-version: ["1.17", "1.18", "1.19", "1.20"] os: [ubuntu-latest, macos-latest, windows-latest] # Continue other jobs if one matrix job fails fail-fast: false