Skip to content

Commit

Permalink
upgrade yq to v4.6.1
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Bowbeer <joe.bowbeer@gmail.com>
  • Loading branch information
joebowbeer committed Mar 16, 2021
1 parent 127cc79 commit f7991ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/tools/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -eu

YQ_VERSION="3.4.1"
KUSTOMIZE_VERSION="3.8.6"
YQ_VERSION="v4.6.1"
KUSTOMIZE_VERSION="3.9.2"
KUBEVAL_VERSION="0.15.0"

mkdir -p $GITHUB_WORKSPACE/bin
Expand Down
2 changes: 1 addition & 1 deletion scripts/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -o errexit
find . -type f -name '*.yaml' -print0 | while IFS= read -r -d $'\0' file;
do
echo "INFO - Validating $file"
yq validate -d'*' "$file"
yq e 'true' "$file" > /dev/null
done

k="kustomization.yaml"
Expand Down

0 comments on commit f7991ec

Please sign in to comment.