1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-01 15:37:31 +00:00

Manually bump helm v3.16.4 (#605)

* Bump the version

* Fix the validate script.

* Need to bump opentelemetry as well.
This commit is contained in:
Eric Promislow
2025-04-29 16:52:35 -07:00
committed by GitHub
parent 32603a0d90
commit 1ef399e5bf
3 changed files with 150 additions and 505 deletions

View File

@@ -1,13 +1,14 @@
#!/bin/bash
set -e
go generate ./..
go generate ./...
golangci-lint run
go mod tidy
go mod verify
unclean=$(git status --porcelain --untracked-files=no)
if [ -n "$unclean" ]; then
echo "Encountered dirty repo!"
git diff
echo "$unclean"
exit 1
fi