From 70057d3056fe8938b6b5fa97e6bc080b049d5e68 Mon Sep 17 00:00:00 2001 From: Jan Larwig Date: Sun, 23 Jun 2024 19:54:01 +0200 Subject: [PATCH] strip v off of version for generating the correct download url --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 078466aa..14926eb3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,10 +32,10 @@ jobs: # renovate: datasource=github-tags depName=golangci/golangci-lint GOLANGCI_LINT_VERSION: v1.55.2 # renovate: datasource=github-tags depName=codeclimate/test-reporter - CODECLIMATE_VERSION: 1.0.1 + CODECLIMATE_VERSION: v1.0.1 run: | curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION} - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-${CODECLIMATE_VERSION}-linux-amd64 > ./cc-test-reporter + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-${CODECLIMATE_VERSION#v}-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter - name: Verify Code Generation