You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: document --disable-release-bump flag and Android (Termux) support
- Add `--disable-release-bump` flag to `gh aw update` command reference,
with example and updated options list. By default, `update` now
force-updates all GitHub Actions to their latest major version; the
new flag restricts force-updates to core `actions/*` only.
- Add Android (Termux) to the standalone installer supported platforms
list, reflecting the android-arm64 binary added in #18609.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Installs to `~/.local/share/gh/extensions/gh-aw/gh-aw`. Supports Linux, macOS, FreeBSD, and Windows. Works behind corporate firewalls using direct release download URLs.
63
+
Installs to `~/.local/share/gh/extensions/gh-aw/gh-aw`. Supports Linux, macOS, FreeBSD, Windows, and Android (Termux). Works behind corporate firewalls using direct release download URLs.
64
64
65
65
### GitHub Actions Setup Action
66
66
@@ -411,16 +411,19 @@ gh aw remove my-workflow
411
411
412
412
Update workflows based on `source` field (`owner/repo/path@ref`). By default, performs a 3-way merge to preserve local changes; use `--no-merge` to override with upstream. Semantic versions update within same major version.
413
413
414
+
By default, `update` also force-updates all GitHub Actions referenced in your workflows (both in `actions-lock.json` and workflow files) to their latest major version. Use `--disable-release-bump` to restrict force-updates to core `actions/*` actions only.
415
+
414
416
If no workflows in the repository contain a `source` field, the command exits gracefully with an informational message rather than an error. This is expected behavior for repositories that have not yet added updatable workflows.
415
417
416
418
```bash wrap
417
419
gh aw update # Update all with source field
418
420
gh aw update ci-doctor # Update specific workflow (3-way merge)
419
421
gh aw update ci-doctor --no-merge # Override local changes with upstream
420
422
gh aw update ci-doctor --major --force # Allow major version updates
423
+
gh aw update --disable-release-bump # Update workflows; only force-update core actions/*
0 commit comments