From 0fc54cb9c02d660a9b43c957aeee199a5d055b4e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 22:36:24 +0000 Subject: [PATCH] Update golang Docker tag to v1.27 --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 87bcda3..2df22d1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,7 +13,7 @@ pool: steps: - name: staticcheck pull: always - image: golang:1.19 + image: golang:1.27 environment: GO111MODULE: "on" # Explicitly enable Go modules commands: @@ -25,7 +25,7 @@ steps: - name: lint pull: always - image: golang:1.19 + image: golang:1.27 commands: - go get golang.org/x/lint/golint - go run golang.org/x/lint/golint -set_exit_status ./... @@ -35,7 +35,7 @@ steps: - name: vet pull: always - image: golang:1.19 + image: golang:1.27 commands: - go vet ./... volumes: @@ -44,7 +44,7 @@ steps: - name: test pull: always - image: golang:1.19 + image: golang:1.27 commands: - go test -cover -v ./... volumes: