Merge pull request #970 from breed808/ci

Resolve recent CI issues
This commit is contained in:
Ben Reedy 2022-05-04 05:46:27 +10:00 committed by GitHub
commit 8f08f55cf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,9 +85,9 @@ jobs:
go-version: '^1.17.5'
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v3
with:
version: v1.43
version: v1.45.2
args: "--timeout=5m"
# golangci-lint action doesn't always provide helpful output, so re-run without the action for
@ -128,8 +128,8 @@ jobs:
- name: Install Build deps
run: |
dotnet tool install --global GitVersion.Tool --version 5.*
go get "github.com/prometheus/promu@$($Env:PROMU_VER)"
go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.0
go install "github.com/prometheus/promu@$($Env:PROMU_VER)"
go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.4.0
# GOPATH\bin dir must be added to PATH else the `promu` and `goversioninfo` commands won't be found
echo "$(go env GOPATH)\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append