From cc2bb7e7ffc02f85d3dbc3221bcff40244a18b73 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 19 Aug 2026 19:39:13 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.27 --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index c5f7889..2aefe48 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,16 +3,16 @@ kind: pipeline name: coopcloud.tech/tagcmp steps: - name: gofmt - image: golang:1.26 + image: golang:1.27 commands: - test -z "$(gofmt -l .)" - name: go build - image: golang:1.26 + image: golang:1.27 commands: - go build -v . - name: go test - image: golang:1.26 + image: golang:1.27 commands: - go test . -cover