This action sets up Microsoft Edge for GitHub Actions. This action supports the following features:
- Install and set up Microsoft Edge onto the runner.
- Install a specific release channel of Microsoft Edge (stable, beta, dev, and canary).
- Cross-platform runner support (Windows, macOS, Linux) and self-hosted runner support.
Basic usage:
steps:
- uses: browser-actions/setup-edge@v1
- name: Print Edge version
run: (Get-Item (Get-Command msedge).Source).VersionInfo.ProductVersionInstall Edge Beta:
steps:
- uses: browser-actions/setup-edge@v1
with:
edge-version: beta
- name: Print Edge version
run: (Get-Item (Get-Command msedge).Source).VersionInfo.ProductVersion| Version format | Example | Download source |
|---|---|---|
| Channel name | stable (default), beta, dev, canary |
Microsoft Edge Updates |
| Linux x64 | Linux ARM64 | Linux ARM32 | macOS x64 | macOS ARM64 | Windows x64 | Windows ARM64 |
|---|---|---|---|---|---|---|
| ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | ✅ |
edge-version: (Optional) The Edge version to be installed. Supported versions are "stable", "beta", "dev", and "canary". Default:stable.
edge-version: The installed Edge version. Useful when given a latest version.edge-path: The installed Edge path.
See CONTRIBUTING.md for development setup, workflow, and release process.