-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrade golang to 1.22.4 and bump up dep (#20665)
fix: upgrade golang to 1.22.4 fix: upgrade trivy version fix: bump up dep fix: bump up base image Signed-off-by: Shengwen Yu <[email protected]>
- Loading branch information
Shengwen YU
authored
Jul 2, 2024
1 parent
87fe14c
commit c8c11b4
Showing
14 changed files
with
71 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,9 @@ | |
* Add date here... Add signature here... | ||
- Add your reason here... | ||
|
||
* Jul 02 2024 <[email protected]> | ||
- Refresh base image | ||
|
||
* Dec 14 2023 <[email protected]> | ||
- Refresh base image | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,19 +5,20 @@ set -e | |
|
||
sudo apt-get update && sudo apt-get install -y libldap2-dev | ||
sudo go env -w GO111MODULE=auto | ||
go get github.com/docker/distribution | ||
go get github.com/docker/libtrust | ||
go get golang.org/x/lint/golint | ||
go get github.com/GeertJohan/fgt | ||
go get github.com/dghubble/sling | ||
set +e | ||
go get github.com/stretchr/testify | ||
go get golang.org/x/tools/cmd/cover | ||
go get github.com/mattn/goveralls | ||
go get -u github.com/client9/misspell/cmd/misspell | ||
set -e | ||
pwd | ||
go version | ||
# cd ./src | ||
# go get github.com/docker/distribution@latest | ||
# go get github.com/docker/libtrust@latest | ||
# set +e | ||
# go get github.com/stretchr/[email protected] | ||
go install golang.org/x/tools/cmd/cover@latest | ||
go install github.com/mattn/goveralls@latest | ||
go install github.com/client9/misspell/cmd/misspell@latest | ||
# set -e | ||
# cd ../ | ||
# binary will be $(go env GOPATH)/bin/golangci-lint | ||
# go install/go get installation aren't guaranteed to work. We recommend using binary installation. | ||
# go get installation aren't guaranteed to work. We recommend using binary installation. | ||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.56.2 | ||
sudo service postgresql stop || echo no postgresql need to be stopped | ||
sleep 2 | ||
|
Oops, something went wrong.