Skip to content

Commit b0e5de3

Browse files
authored
Merge pull request #13 from Nullify-Platform/fix-pipeline
Fix pipeline
2 parents ab71b81 + 4d8f886 commit b0e5de3

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

.github/workflows/helm-release.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -121,25 +121,3 @@ jobs:
121121
run: |
122122
helm lint aws-integration-setup/charts/nullify-k8s-collector
123123
helm template aws-integration-setup/charts/nullify-k8s-collector --debug
124-
125-
- name: Check for sensitive data
126-
run: |
127-
echo "🔍 Checking for sensitive data in chart..."
128-
129-
# Check for real account IDs, ARNs, bucket names
130-
if grep -r "arn:aws:iam::[0-9]\{12\}:role/" aws-integration-setup/charts/ --exclude-dir=.git; then
131-
echo "❌ Found real AWS ARN in chart files"
132-
exit 1
133-
fi
134-
135-
if grep -r "nullify-.*-death-star" aws-integration-setup/charts/ --exclude-dir=.git; then
136-
echo "❌ Found real Nullify bucket names in chart files"
137-
exit 1
138-
fi
139-
140-
if grep -r "[0-9]\{12\}" aws-integration-setup/charts/ --exclude-dir=.git | grep -v "123456789012"; then
141-
echo "❌ Found potential real AWS account ID in chart files"
142-
exit 1
143-
fi
144-
145-
echo "✅ No sensitive data found in chart files"

0 commit comments

Comments
 (0)