Skip to content

Commit 9a5584e

Browse files
MikeMcC399marrws
andauthored
fix: use microsoft-edge.list for Edge installation (#1406)
* fix(microsoft-edge): use same apt source filename as Microsoft post-install script * fix: use microsoft-edge.list for Edge installation * Update Chrome browsers CHROME_VERSION to 140.0.7339.80-1 CHROME_FOR_TESTING_VERSION to 140.0.7339.80 * update Edge to 140.0.3485.54-1 --------- Co-authored-by: Marco Reyes R <[email protected]>
1 parent 1c9a01c commit 9a5584e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

factory/.env

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}"
1818

1919
# Update the FACTORY_VERSION to deploy cypress/factory if you make changes to
2020
# BASE_IMAGE, FACTORY_DEFAULT_NODE_VERSION, YARN_VERSION, factory.Dockerfile or installScripts
21-
FACTORY_VERSION='6.0.1'
21+
FACTORY_VERSION='6.0.2'
2222

2323
# Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
2424
# Linux/amd64 only
25-
CHROME_VERSION='139.0.7258.154-1'
25+
CHROME_VERSION='140.0.7339.80-1'
2626

2727
# Chrome for Testing versions: https://googlechromelabs.github.io/chrome-for-testing/
2828
# not currently used for cypress/browsers and cypress/included images
2929
# Linux/amd64 only
30-
CHROME_FOR_TESTING_VERSION='139.0.7258.154'
30+
CHROME_FOR_TESTING_VERSION='140.0.7339.80'
3131

3232
# Cypress versions: https://www.npmjs.com/package/cypress
3333
CYPRESS_VERSION='15.1.0'
3434

3535
# Edge versions: https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/
3636
# Linux/amd64 only
37-
EDGE_VERSION='139.0.3405.125-1'
37+
EDGE_VERSION='140.0.3485.54-1'
3838

3939
# Firefox versions: https://download-installer.cdn.mozilla.net/pub/firefox/releases/
4040
# Linux/amd64 for all versions, Linux/arm64 for versions 136.0 and above

factory/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change log
22

3+
## 6.0.2
4+
5+
- When installing Microsoft Edge, use only `/etc/apt/sources.list.d/microsoft-edge.list` to resolve a multiple configuration warning from Debian package management. Addresses [#1404](https://github.com/cypress-io/cypress-docker-images/issues/1404).
6+
37
## 6.0.1
48

59
- Updated `FACTORY_DEFAULT_NODE_VERSION` from `22.18.0` to `22.19.0`. Addressed in [#1408](https://github.com/cypress-io/cypress-docker-images/pull/1408).

factory/installScripts/edge/default.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Microsoft offers a debian package, here we're adding the package list and then installing the specific version we want to install.
44
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg \
55
&& install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d \
6-
&& sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-stable.list' \
6+
&& sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list' \
77
&& rm microsoft.gpg \
88
&& apt-get update \
99
&& apt-get install -y microsoft-edge-stable=${1} \

0 commit comments

Comments
 (0)