We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 14aaf42 + ca819ac commit 2ed71c0Copy full SHA for 2ed71c0
.github/workflows/psa-checker.yml
@@ -69,5 +69,7 @@ jobs:
69
cd "shared/charts/$CHART_DIR/"
70
for ENV_DIR in */; do
71
echo -e "\nChecking $ENV_DIR for chart: $CHART_NAME"
72
- cat $ENV_DIR$CHART_NAME/templates/*.yaml | docker run -i $PSA_CHECKER_IMAGE:$PSA_CHECKER_SHA --level "$PSS_LEVEL" -f -
+ cd "$(find $ENV_DIR -type d -name 'templates')"
73
+ cat *.yaml | docker run -i $PSA_CHECKER_IMAGE:$PSA_CHECKER_SHA --level "$PSS_LEVEL" -f -
74
+ cd -
75
done
0 commit comments