gh-actions-validator
About
This Claude Skill validates GitHub Actions workflows for Google Cloud and Vertex AI deployments. It enforces security best practices like Workload Identity Federation, OIDC permission validation, and least-privilege IAM. Use it when setting up or auditing CI/CD pipelines for secure GCP automation.
Quick Install
Claude Code
Recommended/plugin add https://github.com/jeremylongshore/claude-code-plugins-plusgit clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/gh-actions-validatorCopy and paste this command in Claude Code to install this skill
Documentation
Prerequisites
Before using this skill, ensure:
- GitHub repository with Actions enabled
- Google Cloud project with billing enabled
- gcloud CLI authenticated with admin permissions
- Understanding of Workload Identity Federation concepts
- GitHub repository secrets configured
- Appropriate IAM roles for CI/CD automation
Instructions
- Audit Existing Workflows: Scan .github/workflows/ for security issues
- Validate WIF Usage: Ensure no JSON service account keys are used
- Check OIDC Permissions: Verify id-token: write is present
- Review IAM Roles: Confirm least privilege (no owner/editor roles)
- Add Security Scans: Include secret detection and vulnerability scanning
- Validate Deployments: Add post-deployment health checks
- Configure Monitoring: Set up alerts for deployment failures
- Document WIF Setup: Provide one-time WIF configuration commands
Output
Secure Workflow Template:
# {baseDir}/.github/workflows/deploy-vertex-ai.yml
name: Deploy Vertex AI Agent
on:
push:
branches: [main]
paths: ['agent/**']
permissions:
contents: read
id-token: write # REQUIRED for WIF
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Authenticate to GCP (WIF)
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ secrets.WIF_PROVIDER }}
service_account: ${{ secrets.WIF_SERVICE_ACCOUNT }}
- name: Deploy to Vertex AI
run: |
gcloud ai agents deploy \
--project=${{ secrets.GCP_PROJECT_ID }} \
--region=us-central1
- name: Validate Deployment
run: |
python scripts/validate-deployment.py
WIF Setup Commands:
# One-time WIF configuration
gcloud iam workload-identity-pools create github-pool \
--location=global \
--display-name="GitHub Actions Pool"
gcloud iam workload-identity-pools providers create-oidc github-provider \
--location=global \
--workload-identity-pool=github-pool \
--issuer-uri="https://token.actions.githubusercontent.com" \
--attribute-mapping="google.subject=assertion.sub,attribute.repository=assertion.repository"
Security Validation Checks:
# {baseDir}/.github/workflows/security-check.yml
name: Security Validation
on: [pull_request, push]
permissions:
contents: read
security-events: write
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Scan for secrets
uses: trufflesecurity/trufflehog@main
- name: Vulnerability scan
uses: aquasecurity/trivy-action@master
- name: Validate no JSON keys
run: |
if find . -name "*service-account*.json"; then
echo "ERROR: Service account keys detected"
exit 1
fi
- name: Validate WIF usage
run: |
if grep -r "credentials_json" .github/workflows/; then
echo "ERROR: Use WIF instead of JSON keys"
exit 1
fi
Error Handling
WIF Authentication Failed
- Error: "Failed to generate Google Cloud access token"
- Solution: Verify WIF provider and service account email are correct
OIDC Token Error
- Error: "Unable to get ACTIONS_ID_TOKEN_REQUEST_URL env variable"
- Solution: Add
id-token: writepermission to workflow
IAM Permission Denied
- Error: "does not have required permission"
- Solution: Grant service account minimum required roles (run.admin, aiplatform.user)
Attribute Condition Failed
- Error: "Token does not match attribute condition"
- Solution: Update attribute mapping to include repository restriction
Deployment Validation Failed
- Error: "Agent not in RUNNING state"
- Solution: Check agent configuration and deployment logs
Resources
- Workload Identity Federation: https://cloud.google.com/iam/docs/workload-identity-federation
- GitHub OIDC: https://docs.github.com/en/actions/deployment/security-hardening-your-deployments
- Vertex AI Agent Engine: https://cloud.google.com/vertex-ai/docs/agent-engine
- google-github-actions/auth: https://github.com/google-github-actions/auth
- WIF setup guide in {baseDir}/docs/wif-setup.md
GitHub Repository
Related Skills
sglang
MetaSGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.
evaluating-llms-harness
TestingThis Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.
llamaguard
OtherLlamaGuard is Meta's 7-8B parameter model for moderating LLM inputs and outputs across six safety categories like violence and hate speech. It offers 94-95% accuracy and can be deployed using vLLM, Hugging Face, or Amazon SageMaker. Use this skill to easily integrate content filtering and safety guardrails into your AI applications.
langchain
MetaLangChain is a framework for building LLM applications using agents, chains, and RAG pipelines. It supports multiple LLM providers, offers 500+ integrations, and includes features like tool calling and memory management. Use it for rapid prototyping and deploying production systems like chatbots, autonomous agents, and question-answering services.
