From eb3e7758d4eb19e1735cb4f2d97413fdce74f239 Mon Sep 17 00:00:00 2001 From: Comrade Renovate Bot Date: Wed, 9 Aug 2023 07:10:31 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.21 --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index acaff0e..595ec5a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,16 +3,16 @@ kind: pipeline name: coopcloud.tech/tagcmp steps: - name: gofmt - image: golang:1.20 + image: golang:1.21 commands: - test -z "$(gofmt -l .)" - name: go build - image: golang:1.20 + image: golang:1.21 commands: - go build -v . - name: go test - image: golang:1.20 + image: golang:1.21 commands: - go test . -cover