From Napkin
Upgrades GitHub Actions to supported runtimes by selecting safe action versions, preserving workflow behavior, and validating post-upgrade execution. Use when workflow logs show runtime deprecation warnings.
How this skill is triggered — by the user, by Claude, or both
Slash command
/napkin:github-actions-runtime-upgrade-conventionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when editing GitHub Actions workflows to address deprecation warnings about action runtimes (for example Node.js runtime migrations).
Use this skill when editing GitHub Actions workflows to address deprecation warnings about action runtimes (for example Node.js runtime migrations).
.github/workflows/*.yml or .github/workflows/*.yaml.uses:.@v4 or @main) in final recommendations.Prioritize runtime review for these groups when warnings appear:
actions/*actions/setup-* (for example setup-node, setup-python, setup-dotnet)steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.3.1
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.4
When recommending upgrades, identify the latest compatible release first, then use the corresponding commit SHA with an optional version comment.
After changing action versions:
Include in the PR summary:
Dependabot can automate many updates, but this skill still helps when:
npx claudepluginhub ani1797/forge --plugin copilot-sdk2plugins reuse this skill
First indexed Jul 20, 2026
Upgrades GitHub Actions to supported runtimes by selecting safe action versions, preserving workflow behavior, and validating post-upgrade execution. Use when workflow logs show runtime deprecation warnings.
Validates, lints, audits, and fixes GitHub Actions workflows using actionlint and act. Includes local testing, error fixes, and public action version checks.
Reference for GitHub Actions workflow best practices, including runner context, timeout-minutes, caching, concurrency, and security. Use when writing or debugging .yml workflows.