skills/update-github-actions-version/SKILL.md
Update GitHub Actions versions in workflow files, focusing only on major version changes. Use when the user wants to update action versions, check for outdated GitHub Actions, or upgrade workflow dependencies to their latest major versions.
npx skillsauth add jim60105/copilot-prompt update-github-actions-versionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Update action versions in GitHub Actions workflow files, focusing on major version changes only.
v4) automatically fetches the latest minor and patch versions.actions/checkout@v4 will automatically get versions like v4.2.2, v4.3.0.v4 to a specific version like v4.2.2 — this is unnecessary.v5 to v6).Note: Skip
fatjyc/[email protected]updates as the new version is broken.
Look for files in .github/workflows/ recursively. Note that composite actions may be used — read both the composite action and the calling workflow simultaneously.
Analyze the action versions used in the workflow files.
Query each action's latest version:
https://github.com/{owner}/{repo}/releases/latest
Only update actions where the major version has changed:
docker/build-push-action@v5 → @v6actions/checkout@v4 → @v4.2.2Note: Skip
fatjyc/[email protected]updates as the new version is broken and v6.0 is fine.
For actions requiring updates, retrieve changelogs to understand breaking changes.
Update version numbers and make adjustments for any breaking changes.
Git add and commit your changes with a clear message indicating the updates made.
# From
uses: docker/build-push-action@v5
# Update to
uses: docker/build-push-action@v6
# From
uses: actions/checkout@v4
# Incorrectly updated to
uses: actions/checkout@v4 .2 .2
# Keep unchanged
uses :actions / checkout @ v 4
GitHub will automatically use the latest v 4.x.x release
data-ai
UI/UX design agent for crafting user experiences, visual designs, and game interfaces. Auto-detects the designer role (UX Designer, UI Designer, Game UI Designer) and spawns a role-scoped sub-agent with only the relevant reference files. Triggers on phrases like "user flow", "wireframe", "design system", "design tokens", "accessibility", "WCAG", "UI pattern", "HUD", "game menu", "inventory UI", "minimap". Full per-role triggers in references/roles/.
testing
Create `AGENTS.md` file for a project. Use when the user wants to set up custom instructions, configure AI coding assistant behavior, or create project-specific coding guidelines for AI agents.
development
Generate images via the Stable Diffusion WebUI / Forge HTTP API (AUTOMATIC1111-compatible `/sdapi/v1/*`). Use when the user wants to (1) discover or pick a model / extra module (TE/VAE) / sampler / scheduler / style preset from a running sd-webui server, (2) generate an image with a given prompt (txt2img), (3) check generation progress, (4) cancel/interrupt an in-flight generation, (5) inspect or change a global sd-webui option (e.g. active checkpoint), or (6) test connectivity. This skill talks to a *generic* sd-webui-compatible server (AUTOMATIC1111, Forge, reForge, sd-webui-forge-classic). Do NOT trigger for requests that are purely writing the prompt itself.
testing
Verify implementation matches change artifacts. Use when the user wants to validate that implementation is complete, correct, and coherent before archiving.