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 ```