Merge pull request #924 from breed808/e2e_fix

Don't upgrade dependencies when installing tools
This commit is contained in:
Ben Reedy 2022-01-30 12:12:45 +10:00 committed by GitHub
commit 277f141587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -25,8 +25,8 @@ jobs:
- name: Install e2e deps
run: |
go get -u github.com/prometheus/promu@v0.11.1
go get -u github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.0
go get github.com/prometheus/promu@v0.11.1
go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.0
# GOPATH\bin dir must be appended to PATH else the `promu` command won't be found
echo "$(go env GOPATH)\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
@ -90,8 +90,8 @@ jobs:
- name: Install Build deps
run: |
go get -u github.com/prometheus/promu@v0.11.1
go get -u github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.0
go get github.com/prometheus/promu@v0.11.1
go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.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