From 51cd2830dd24445525596f0eafb0b6c2b1c0faf4 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 3 Aug 2022 16:20:49 +0200 Subject: [PATCH] fix(ci): make sure the linter actually runs --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9e8267053f..d945a048d1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -132,12 +132,13 @@ steps: event: [ push, tag, pull_request ] - name: lint - image: vikunja/golang-build:latest + image: golang:1.17-alpine pull: true environment: GOPROXY: 'https://goproxy.kolaente.de' depends_on: [ build ] commands: + - apk --no-cache add build-base - wget -O - -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.47.3 - ./mage-static check:all when: @@ -844,6 +845,6 @@ steps: - failure --- kind: signature -hmac: 3745c69e4723e5349527f5ca8941a530f3ed05f333622cce56630f3c39b1fdbd +hmac: 3855121602138f1ccf62ace44800b66a0728786ef2ef6d25d3a69e10b805fd52 ...