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