From 9ce9efe57470957f16ddaba0695d79694e9ecf7d Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Mon, 18 Apr 2022 15:07:38 +0200 Subject: [PATCH] revert to original golang image --- .drone.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index c7e732f..7bac05b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,9 +4,8 @@ name: default steps: - name: static_check - image: golang:alpine + image: golang:latest commands: - - apk update && apk --no-cache add git gcc glibc - go install honnef.co/go/tools/cmd/staticcheck@latest - staticcheck ./pkg/... volumes: @@ -14,9 +13,8 @@ steps: path: /go - name: lint - image: golang:alpine + image: golang:latest commands: - - apk update && apk --no-cache add git gcc glibc - go install golang.org/x/lint/golint@latest - golint -set_exit_status ./pkg/... volumes: @@ -24,9 +22,8 @@ steps: path: /go - name: vet - image: golang:alpine + image: golang:latest commands: - - apk update && apk --no-cache add git gcc glibc - go vet ./pkg/... volumes: - name: gopath