:pin: Changed Go version in go.mod and CI config

This commit is contained in:
Maxim Lebedev 2023-01-16 15:00:24 +06:00
parent 2f9153fb5e
commit 30f8be2c6c
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ environment:
steps:
- name: test
image: golang:1.18
image: golang:latest
volumes:
- name: modules
path: /go/pkg/mod
@ -16,7 +16,7 @@ steps:
- make check
- name: build
image: golang:1.18
image: golang:latest
volumes:
- name: modules
path: /go/pkg/mod

2
go.mod
View File

@ -1,6 +1,6 @@
module source.toby3d.me/toby3d/auth
go 1.18
go 1.19
require (
github.com/DATA-DOG/go-sqlmock v1.5.0