From b67ba6ab59c6bd152feea677e01b2590c9003aff Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sat, 9 May 2026 23:04:21 +0900 Subject: [PATCH 1/2] docs: improve heading grammar and update supported platforms table MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix "sets-up" → "sets up" and "Install and setup" → "Install and set up" - Move Supported platforms section after Usage - Add Linux ARM32 and Linux ARM64 columns - Simplify row labels for readability Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index cac5a79..083a50f 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ # setup-chrome -This action sets-up Google Chrome/Chromium for GitHub Actions. This action supports the following features: +This action sets up Google Chrome/Chromium for GitHub Actions. This action supports the following features: -- Install and setup the Google Chrome onto the runner. +- Install and set up Google Chrome onto the runner. - Install a specific version of Google Chrome/Chromium by the version number, commit position, and release channel. - Cross-platform runner support (Windows, macOS, Linux) and self-hosted runner support. - Install the compatible versions of ChromeDriver with the browser. @@ -80,6 +80,15 @@ steps: ${{ steps.setup-chrome.outputs.chrome-path }} --version ``` +## Supported platforms + +| | Linux x64 | Linux ARM32 | Linux ARM64 | macOS x64 | macOS ARM64 | Windows x64 | Windows ARM64 | +| --- | --- | --- | --- | --- | --- | --- | --- | +| Channel name | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ | ❌ | +| Commit position | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | +| Specific version | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ | ❌ | +| Latest snapshot | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | + ## Parameters ### Inputs @@ -102,15 +111,6 @@ steps: [snapshots]: https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html -## Supported platforms - -| | Linux x64 | Mac x64 | Mac Arm64 | Windows | Windows Arm64 | -| --- | --- | --- | --- | --- | --- | -| Channel name (e.g. `stable`) | ✅ | ✅ | ✅ | ✅ | ❌ | -| Commit position (e.g. `1295939`) | ✅ | ✅ | ✅ | ✅ | ✅ | -| Specific version (e.g. `120.0.6099`) | ✅ | ✅ | ✅ | ✅ | ❌ | -| Latest snapshot | ✅ | ✅ | ✅ | ✅ | ✅ | - ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, workflow, and release process. From e41640a0e4f0eeea2ee445eb5a3cabe4193fe044 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sat, 9 May 2026 23:07:26 +0900 Subject: [PATCH 2/2] docs: add download source to supported version formats table Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 083a50f..f0b912f 100644 --- a/README.md +++ b/README.md @@ -56,14 +56,17 @@ steps: ### Supported version formats -The action supports the following version formats: +| Version format | Example | Download source | +| --- | --- | --- | +| Channel name | `stable` (default), `beta`, `dev`, `canary` | [Chrome for Testing][] | +| Commit position | `1295939` | [Chromium Snapshots][] | +| Specific version | `119`, `120.0.6099`, `121.0.6100.0` | [Chrome for Testing][] | +| Latest snapshot | `latest` | [Chromium Snapshots][] | -- The latest snapshot `latest`. -- Commit positions like `1295939`. You can find commit positions from [here][snapshots]. -- Google Chrome release channels: `stable` (default), `beta`, `dev` and `canary` -- Specific versions: `119`, `120.0.6099`, `121.0.6100.0`. The version are resolved by [Chrome for Testing][]. +You can find Chromium commit positions from [here][Chromium Snapshots]. [Chrome for Testing]: https://googlechromelabs.github.io/chrome-for-testing/ +[Chromium Snapshots]: https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html ### Installed path @@ -108,9 +111,6 @@ steps: - `chrome-version`: The installed Google Chrome/Chromium version. - `chromedriver-path`: The installed ChromeDriver binary path. - `chromedriver-version`: The installed ChromeDriver version. - -[snapshots]: https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html - ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, workflow, and release process.