git » dnss » commit eb1ce14

gitlab-ci: Bump up minimum Go version to 1.15

author Alberto Bertogli
2021-10-09 10:19:17 UTC
committer Alberto Bertogli
2021-10-09 10:19:17 UTC
parent 81267e1b4a7de2d1b2819df8d66ffee0f5659fc9

gitlab-ci: Bump up minimum Go version to 1.15

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

.gitlab-ci.yml +2 -2

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index acdec83..53760a2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,9 +10,9 @@ stages:
     - go test ./...
     - go test -race ./...
 
-golang_1.13:
+golang_1.15:
   <<: *golang
-  image: golang:1.13  # Oldest supported version (for now).
+  image: golang:1.15  # Oldest supported version (for now).
 
 golang_latest:
   <<: *golang