From efbf70ae15fef672b7b9486671a0993524b34bd6 Mon Sep 17 00:00:00 2001 From: Daily Documentation Healer Date: Fri, 27 Feb 2026 19:24:21 +0000 Subject: [PATCH 1/2] 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 --- docs/src/content/docs/setup/cli.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/setup/cli.md b/docs/src/content/docs/setup/cli.md index dc73911b24..1ddeb082d4 100644 --- a/docs/src/content/docs/setup/cli.md +++ b/docs/src/content/docs/setup/cli.md @@ -60,7 +60,7 @@ curl -sL https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh | curl -sL https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh | bash -s v0.1.0 # Pinned ``` -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. +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. ### GitHub Actions Setup Action @@ -411,6 +411,8 @@ gh aw remove my-workflow 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. +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. + 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. ```bash wrap @@ -418,9 +420,10 @@ gh aw update # Update all with source field gh aw update ci-doctor # Update specific workflow (3-way merge) gh aw update ci-doctor --no-merge # Override local changes with upstream gh aw update ci-doctor --major --force # Allow major version updates +gh aw update --disable-release-bump # Update workflows; only force-update core actions/* ``` -**Options:** `--dir`, `--no-merge`, `--major`, `--force`, `--engine`, `--no-stop-after`, `--stop-after` +**Options:** `--dir`, `--no-merge`, `--major`, `--force`, `--engine`, `--no-stop-after`, `--stop-after`, `--disable-release-bump` #### `upgrade` From 044971ad0a2b7b5be49f31e0fc91777dce923ac7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 27 Feb 2026 19:26:19 +0000 Subject: [PATCH 2/2] ci: trigger CI checks