Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement: add git secrets scan to CI #2973

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions .github/workflows/git-secrets-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Git Secrets Scan

on:
pull_request:
branches:
- master

jobs:
git-secrets-scan:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Git Secrets
run: |
sudo apt-get update
sudo apt-get install -y git
git clone https://github.com/awslabs/git-secrets.git
cd git-secrets
sudo make install
cd ..
git secrets --install
git secrets --register-aws

- name: Fetch previous commit
run: |
git fetch origin +refs/heads/${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }}
export DIFF=$(git diff origin/${{ github.base_ref }} HEAD)
echo "${DIFF}" > diff.txt

- name: Filter out skipped patterns
run: |
skippedPrefixes=(
'src/data/s3control/2018-08-20/endpoint-tests-1.json.php'
'tests/DynamoDb/MarshalerTest.php'
'- '
'\[ERROR\]'
'\\n'
'PHP_EOL'
'Possible'
'/usr/local/bin/git-secrets:'
'tests/S3Control'
'tests/Arn'
)

skippedRegexes=(
'/examples-/'
'/UpdateDataSourceRequest\$Credentials/'
'/"AccountId": "123456789012"/'
'/"AccountId": "999999999999"/'
'/123456789012/'
'/999999999999/'
'/"Username": "username"/'
'/"Password": "password"/'
'/RegisterUserResponse\$UserInvitationUrl/'
)

# Filter out lines matching skipped prefixes
for prefix in "${skippedPrefixes[@]}"; do
sed -i "\|${prefix}|d" diff.txt
done

# Filter out lines matching skipped regexes
for regex in "${skippedRegexes[@]}"; do
sed -i -E "${regex}d" diff.txt
done

- name: Run Git Secrets scan on filtered diff
run: |
if [ -s diff.txt ]; then
cat diff.txt | git secrets --scan - 2>&1
status=$?
if [ $status -ne 0 ]; then
exit $status
fi
else
echo "No differences found."
fi
Loading