git » spf » commit 805c97b

Bump up minimum supported Go version to 1.15

author Alberto Bertogli
2021-10-09 10:15:51 UTC
committer Alberto Bertogli
2021-10-09 10:24:33 UTC
parent cd39542afdd2a80546e29880cf5d445392d94ad3

Bump up minimum supported Go version to 1.15

Now that the new Debian stable release has been out for a while, bump
the minimum supported Go version to 1.15.

.gitlab-ci.yml +2 -2
go.mod +1 -1
go.sum +1 -0

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0c53e35..03d6d8a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,9 +7,9 @@
     - go test ./...
     - go test -race ./...
 
-golang_1.11:
+golang_1.15:
   <<: *golang
-  image: golang:1.11  # Oldest supported version (for now).
+  image: golang:1.15  # Oldest supported version (for now).
 
 golang_latest:
   <<: *golang
diff --git a/go.mod b/go.mod
index 31a8460..8e41f39 100644
--- a/go.mod
+++ b/go.mod
@@ -1,5 +1,5 @@
 module blitiri.com.ar/go/spf
 
-go 1.14
+go 1.15
 
 require gopkg.in/yaml.v2 v2.3.0
diff --git a/go.sum b/go.sum
index 8fabe8d..168980d 100644
--- a/go.sum
+++ b/go.sum
@@ -1,3 +1,4 @@
+gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
 gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
 gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=