Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Update gopogh from v0.27.0 to v0.28.0 #19542

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/functional_verified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0

- name: Docker Info
shell: bash
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -458,7 +458,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -578,7 +578,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Set fs.protected_regular
shell: bash
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Download Binaries
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
Expand Down Expand Up @@ -576,7 +576,7 @@ jobs:
- name: Install gopogh
shell: bash
run: |
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
- name: Set fs.protected_regular
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion hack/jenkins/common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ gsutil.cmd -m cp -r gs://minikube-builds/$env:MINIKUBE_LOCATION/installers/check
./out/check_install_golang.ps1

# Download gopogh and gotestsum
go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0
go install gotest.tools/[email protected]
# temporary: remove the old install of gopogh & gotestsum as it's taking priority over our current install, preventing updating
if (Test-Path "C:\Go") {
Expand Down
2 changes: 1 addition & 1 deletion hack/jenkins/installers/check_install_gopogh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ set -eux -o pipefail
# temporary: remove the old install of gopogh as it's taking priority over our current install, preventing updating
sudo rm -f /usr/local/bin/gopogh

go install github.com/medyagh/gopogh/cmd/gopogh@v0.27.0
go install github.com/medyagh/gopogh/cmd/gopogh@v0.28.0