Skip to content

Instantly share code, notes, and snippets.

@colbyfayock
Created April 20, 2021 14:39
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colbyfayock/a068e67143798ac88b240aba63f0f2b9 to your computer and use it in GitHub Desktop.
Save colbyfayock/a068e67143798ac88b240aba63f0f2b9 to your computer and use it in GitHub Desktop.
GitHub Actions - Installing a specific version of Chrome
# Follow instructions under "Old Builds" here: https://www.chromium.org/getting-involved/download-chromium
# Add the version number in the variable below and run the step before needed
# "-1" may not show in the actual version number
steps:
- run: |
VERSION_STRING="88.0.4324.96-1"
wget "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${VERSION_STRING}_amd64.deb"
sudo dpkg -i "google-chrome-stable_${VERSION_STRING}_amd64.deb"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment