go 1.21.3
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ask Bjørn Hansen 2023-10-22 17:08:40 -07:00
parent 3489bd14fc
commit c0c61a71c2
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ name: default
steps:
- name: test
image: golang:1.20.4
image: golang:1.21.3
commands:
- pwd
- go test -v
@ -55,6 +55,6 @@ volumes:
---
kind: signature
hmac: a594c687217d9d5edae949bb0d64cd2db5a259199a38bc966c16494d5d4424fe
hmac: ae129d718e76a9823a7cbf74cbb38eb6684bae1f38f9a7c94731fa62f42a2d0a
...

View File

@ -1,4 +1,4 @@
FROM golang:1.20.4-alpine3.18 as builder
FROM golang:1.21.3-alpine3.18 as builder
WORKDIR /go/src/gitea.develooper.com/ask/drone-test
ADD . .
RUN CGO_ENABLED=1 GOOS=linux go build -o demo

2
go.mod
View File

@ -1,3 +1,3 @@
module gitea.develooper.com/ask/drone-test
go 1.16
go 1.21