From 9188045ff81c82c0e8679b4d8ebd78024b87dc2f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 22:36:11 +0000 Subject: [PATCH] Update golang Docker tag to v1.26 --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 87bcda3..70248d2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,7 +13,7 @@ pool: steps: - name: staticcheck pull: always - image: golang:1.19 + image: golang:1.26 environment: GO111MODULE: "on" # Explicitly enable Go modules commands: @@ -25,7 +25,7 @@ steps: - name: lint pull: always - image: golang:1.19 + image: golang:1.26 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.26 commands: - go vet ./... volumes: @@ -44,7 +44,7 @@ steps: - name: test pull: always - image: golang:1.19 + image: golang:1.26 commands: - go test -cover -v ./... volumes: