diff --git a/.circleci/config.yml b/.circleci/config.yml index 767493ed2..c0ca5f1d4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ executors: resource_class: macos.m1.medium.gen1 browsers: docker: - - image: 'cypress/browsers:node-20.9.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1' + - image: 'cypress/browsers:node-20.14.0-chrome-126.0.6478.114-1-ff-127.0.1-edge-126.0.2592.61-1' jobs: win-test: diff --git a/.github/workflows/chrome-docker.yml b/.github/workflows/chrome-docker.yml index 5091860e8..33ad4b771 100644 --- a/.github/workflows/chrome-docker.yml +++ b/.github/workflows/chrome-docker.yml @@ -7,7 +7,7 @@ jobs: chrome: runs-on: ubuntu-22.04 # https://github.com/cypress-io/cypress-docker-images - container: cypress/browsers:node-20.9.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1 + container: cypress/browsers:node-20.14.0-chrome-126.0.6478.114-1-ff-127.0.1-edge-126.0.2592.61-1 steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7c5292b1f..7b2f920cb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ cache: # this job installs npm dependencies and Cypress install: - image: cypress/base:20.11.1 + image: cypress/base:20.14.0 stage: build script: @@ -35,7 +35,7 @@ install: # all jobs that actually run tests can use the same definition .job_template: - image: cypress/base:20.11.1 + image: cypress/base:20.14.0 stage: test script: # print CI environment variables for reference diff --git a/Dockerfile b/Dockerfile index bb40ab8e1..79271f658 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # https://documentation.codeship.com/pro/languages-frameworks/nodejs/ # use Cypress provided image with all dependencies included -FROM cypress/base:20.11.1 +FROM cypress/base:20.14.0 RUN node --version RUN npm --version WORKDIR /home/node/app diff --git a/Jenkinsfile b/Jenkinsfile index 558017454..0053b16c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,7 +37,7 @@ pipeline { agent { // this image provides everything needed to run Cypress docker { - image 'cypress/base:20.9.0' + image 'cypress/base:20.14.0' } } diff --git a/basic/.circleci/config.yml b/basic/.circleci/config.yml index 2e5035c4a..79c0d37d2 100644 --- a/basic/.circleci/config.yml +++ b/basic/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: test: docker: - - image: cypress/base:20.11.1 + - image: cypress/base:20.14.0 steps: - checkout # restore folders with npm dependencies and Cypress binary diff --git a/basic/.gitlab-ci.yml b/basic/.gitlab-ci.yml index 38a962d7b..1049ba7ca 100644 --- a/basic/.gitlab-ci.yml +++ b/basic/.gitlab-ci.yml @@ -13,7 +13,7 @@ cache: - cache/Cypress test: - image: cypress/base:20.11.1 + image: cypress/base:20.14.0 stage: test script: - npm ci diff --git a/basic/Jenkinsfile b/basic/Jenkinsfile index f05a8c940..a37863bae 100644 --- a/basic/Jenkinsfile +++ b/basic/Jenkinsfile @@ -2,7 +2,7 @@ pipeline { agent { // this image provides everything needed to run Cypress docker { - image 'cypress/base:20.9.0' + image 'cypress/base:20.14.0' } } diff --git a/basic/codeship-pro/Dockerfile b/basic/codeship-pro/Dockerfile index bb40ab8e1..79271f658 100644 --- a/basic/codeship-pro/Dockerfile +++ b/basic/codeship-pro/Dockerfile @@ -2,7 +2,7 @@ # https://documentation.codeship.com/pro/languages-frameworks/nodejs/ # use Cypress provided image with all dependencies included -FROM cypress/base:20.11.1 +FROM cypress/base:20.14.0 RUN node --version RUN npm --version WORKDIR /home/node/app diff --git a/buddy.yml b/buddy.yml index 606f24850..035b5c2ef 100644 --- a/buddy.yml +++ b/buddy.yml @@ -8,7 +8,7 @@ type: "BUILD" working_directory: "/buddy/cypress-example-kitchensink" docker_image_name: "cypress/base" - docker_image_tag: "20.9.0" + docker_image_tag: "20.14.0" execute_commands: - "npm install --force" - "npm run cy:verify"