From 11f5c02cdc54019f8a19fda8cb889f07124b8606 Mon Sep 17 00:00:00 2001 From: elij Date: Wed, 16 Aug 2023 15:42:56 -0700 Subject: [PATCH] bump go min version --- .github/workflows/unit-tests.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 7e8f9c9..7afa6d3 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -10,7 +10,7 @@ jobs: name: Build strategy: matrix: - goVer: ["1.12.x", "1.17.x"] + goVer: ["1.16.x", "1.21.x"] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: diff --git a/go.mod b/go.mod index 5bac248..03b7808 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/cactus/gostrftime -go 1.12 +go 1.16 require gotest.tools/v3 v3.5.0