GA-B007: Outdated action version
Info Best Practice
Why This Matters
Using outdated major versions of well-known GitHub Actions may miss important security fixes, performance improvements, and Node.js runtime updates. GitHub deprecated Node 16 action runners in 2024 and Node 20 follows in late 2026.
How to Fix
Update the action to the current major version
Before (incorrect)
uses: actions/checkout@v2 After (correct)
uses: actions/checkout@v4 Rule Details
- Rule Code
- GA-B007
- Severity
- Info
- Category
- Best Practice