From 89f6c463df8d892084df95f9ea114ed040339aa0 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Mon, 20 May 2024 11:17:25 +0200 Subject: [PATCH] docs: update README Firefox not found example --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9e00e612dc..2280a6ccbd 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Browser: firefox was not found on your system or is not supported by Cypress. Can't run because you've entered an invalid browser name. ``` -To resolve this, the container needs to run with user id `1001`. +To resolve this, the container needs to run with user id `1001`. One example using the [cypress-io/github-action](https://github.com/cypress-io/github-action) @@ -112,12 +112,12 @@ on: push jobs: cypress-run: runs-on: ubuntu-22.04 - container: - image: cypress/browsers:node18.12.0-chrome106-ff106 - options: --user 1001 + container: + image: cypress/browsers:node18.12.0-chrome106-ff106 + options: --user 1001 steps: - - uses: actions/checkout@v3 - - uses: cypress-io/github-action@v5 + - uses: actions/checkout@v4 + - uses: cypress-io/github-action@v6 with: browser: firefox ```