Skip to content

Commit

Permalink
Merge pull request #1465 from vmware-tanzu/jtc/bump-deps
Browse files Browse the repository at this point in the history
Bump dependencies to latest
  • Loading branch information
joshuatcasey committed Mar 29, 2023
2 parents 1ebc8e8 + 2ba3789 commit bd56eeb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ require (
k8s.io/gengo v0.0.0-20230306165830-ab3349d207d4
k8s.io/klog/v2 v2.90.1
k8s.io/kube-aggregator v0.26.3
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a
k8s.io/kube-openapi v0.0.0-20230327201221-f5883ff37f0c
k8s.io/utils v0.0.0-20230313181309-38a27ef9d749
sigs.k8s.io/yaml v1.3.0
)
Expand Down
9 changes: 7 additions & 2 deletions hack/update-go-mod/update-go-mod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@
set -euo pipefail

SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
ROOT_DIR="$SCRIPT_DIR/../.."

GO_MOD="${SCRIPT_DIR}/../../go.mod"
GO_MOD="${ROOT_DIR}/go.mod"

pushd "${SCRIPT_DIR}" > /dev/null
go run . "${GO_MOD}"
script=$(go run . "${GO_MOD}")
popd > /dev/null

pushd "${ROOT_DIR}" > /dev/null
eval "$script"
popd > /dev/null

0 comments on commit bd56eeb

Please sign in to comment.