Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: browser-actions/setup-chrome
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: setup-chrome-v2.0.0
Choose a base ref
...
head repository: browser-actions/setup-chrome
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: setup-chrome-v2.1.0
Choose a head ref
  • 2 commits
  • 7 files changed
  • 2 contributors

Commits on Jul 13, 2025

  1. feat: Support snapshot installs on Windows ARM64 (#635)

    This PR adds support for installing Chrome and ChromeDriver from
    snapshots on Windows ARM64. It allows to install chrome browsers with
    snapshot numbers such as `1485971`.
    
    ```yaml
    test-windows-arm:
      runs-on: windows-11-arm
      steps:
        - name: Install Google Chrome
          uses: browser-actions/setup-chrome@v2
          with:
            chrome-version: 1485971
            install-chromedriver: true
          id: setup-chrome
        - run: |
            (Get-Item (Get-Command "${{ steps.setup-chrome.outputs.chrome-path }}").Source).VersionInfo.ProductVersion
            (Get-Item (Get-Command "${{ steps.setup-chrome.outputs.chromedriver-path }}").Source).VersionInfo.ProductVersion
    ```
    ueokande authored Jul 13, 2025
    Configuration menu
    Copy the full SHA
    12261ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f2f9da View commit details
    Browse the repository at this point in the history
Loading