From c404adcfcdc18b48b0e1db3db607c7bca5e90ca1 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Sat, 16 Apr 2022 14:42:59 +0200 Subject: [PATCH] Updated CI Golang version --- .drone.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 47fff11..e84bf25 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,25 +4,25 @@ name: default steps: - name: static_check - image: golang:1.16 + image: golang:1.18 commands: - - go get honnef.co/go/tools/cmd/staticcheck + - go install honnef.co/go/tools/cmd/staticcheck@latest - staticcheck ./pkg/... volumes: - name: gopath path: /go - name: lint - image: golang:1.16 + image: golang:1.18 commands: - - go get golang.org/x/lint/golint + - go install golang.org/x/lint/golint@latest - golint -set_exit_status ./pkg/... volumes: - name: gopath path: /go - name: vet - image: golang:1.16 + image: golang:1.18 commands: - go vet ./pkg/... volumes: @@ -31,4 +31,4 @@ steps: volumes: - name: gopath - temp: {} \ No newline at end of file + temp: {} \ No newline at end of file