1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2026-01-26 20:35:56 +00:00

Update minimum supported Go version 1.15 -> 1.17

The latest version of some packages we depend on (golang.org/x/sys,
indirectly) do not support 1.15 anymore.

We kept 1.15 because it's the version on Debian stable, but that release
is more than 2y old, and newer versions are readily available in Debian
stable backports.

So this patch updates the minimum supported Go version to 1.17.
This commit is contained in:
Alberto Bertogli
2022-11-12 18:41:40 +00:00
parent 6896b221e8
commit 008367d320
3 changed files with 8 additions and 5 deletions

View File

@@ -16,9 +16,9 @@ stages:
- su testing -c "go test ./..."
- su testing -c "go test -race ./..."
golang_1.15:
golang_1.17:
<<: *golang
image: golang:1.15 # Version in Debian stable.
image: golang:1.17 # Oldest supported Go version.
golang_latest:
<<: *golang