From ec5746faec96b7803d7fbe0175bdddca4a8756bd Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Mon, 3 Aug 2026 15:23:12 +0900 Subject: [PATCH] Stop installing google-chrome-stable in CI for silence noisy warnings The runner image ships Chrome and a matching chromedriver, but installing google-chrome-stable upgrades Chrome only, leaving the older chromedriver in PATH and making Selenium Manager warn about the version mismatch. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f445ffd8..0285b90e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: options: --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - run: sudo apt-get update && sudo apt-get install --no-install-recommends -y google-chrome-stable curl libvips postgresql-client libpq-dev imagemagick + - run: sudo apt-get update && sudo apt-get install --no-install-recommends -y curl libvips postgresql-client libpq-dev imagemagick - uses: actions/checkout@v4