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
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.
development
Update an OpenSpec change by revising its existing planning artifacts and keeping them coherent with one another. Use when the user wants to revise a change's plan, fold new decisions into it, or reconcile its artifacts after an edit. Never edits code.
data-ai
Sync delta specs from a change to main specs. Use when the user wants to update main specs with changes from a delta spec, without archiving the change.