Check code freshness #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check code freshness | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 5 * * 1" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-region: us-east-2 | |
role-to-assume: arn:aws:iam::561178107736:role/DevOps-GitHubOidcFederatedRole | |
role-session-name: GitHubActions-CheckCodeFreshness | |
- name: Check parameter ages | |
run: | | |
threshold=$(date --date="90 days ago" +%FT%H:%M:%SZ) | |
aws_command="aws ssm describe-parameters --region us-east-1 --parameter-filters Key=Name,Option=Contains,Values=pkg" | |
unset NEXT_TOKEN | |
function process_parameter { | |
echo $1 | jq '.Name' | |
} | |
function parse_output() { | |
if [ ! -z "$cli_output" ]; then | |
echo $cli_output | jq -c --arg d "$threshold" '.Parameters[] | select( .Name | contains("/prx/prod/Spire/")) | select(.LastModifiedDate < $d)' | while read param; do | |
process_parameter $param | |
done | |
NEXT_TOKEN=$(echo $cli_output | jq -r ".NextToken") | |
fi | |
} | |
# The command is run and output parsed in the below statements. | |
cli_output=$($aws_command) | |
parse_output | |
# The below while loop runs until either the command errors due to throttling or | |
# comes back with a pagination token. In the case of being throttled / throwing | |
# an error, it sleeps for three seconds and then tries again. | |
while [ "$NEXT_TOKEN" != "null" ]; do | |
if [ "$NEXT_TOKEN" == "null" ] || [ -z "$NEXT_TOKEN" ] ; then | |
echo "now running: $aws_command " | |
sleep 3 | |
cli_output=$($aws_command) | |
parse_output | |
else | |
echo "now paginating: $aws_command --starting-token $NEXT_TOKEN" | |
sleep 3 | |
cli_output=$($aws_command --starting-token $NEXT_TOKEN) | |
parse_output | |
fi | |
done #pagination loop |